    :root {
        --primary: #8d6a52;
        --primary-dark: #745340;
        --dark-bg: #20242b;
        --light-bg: #f4f2ef;
        --surface: #f8f6f3;
        --text-dark: #2f2a26;
        --text-gray: #6f6660;
        --white: #ffffff;
        --line: #e7dfd8;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Barlow', sans-serif;
    }

    body {
        background-color: var(--white);
        color: var(--text-dark);
        line-height: 1.6;
        font-weight: 500;
    }

/* Top Bar */
.top-bar {
    background: #0f1a2b; /* koyu lacivert */
    color: #fff;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 400;
}

.top-bar i {
    color: #fff;
    margin-right: 5px;
}
    /* Header */
    header {
        background: var(--white);
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    }

    .logo {
        font-size: 24px;
        font-weight: 500;
        color: var(--primary);
        display: flex;
        align-items: center;
        letter-spacing: 0.3px;
    }

    .logo span {
        color: #000;
        margin-left: 5px;
        font-weight: 400;
    }

    nav {
        display: flex;
        align-items: center;
    }

    nav a {
        text-decoration: none;
        color: var(--text-dark);
        margin: 0 12px;
        font-weight: 400;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    nav a:hover {
        color: var(--primary);
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
    }
    
    nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav li{
    list-style: none;
    margin: 0;
    padding: 0;
}

    /* Hero Section */
    .hero {
        background:
            linear-gradient(rgba(32, 36, 43, 0.56), rgba(32, 36, 43, 0.56)),
            url('https://www.marasseramikustasi.com/wp-content/uploads/2026/02/ince-iscilik.webp');
        background-size: cover;
        background-position: center;
        padding: 64px 5%;
        min-height: 250px;
        display: flex;
        align-items: center;
        color: white;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero h1 {
        font-size: 42px;
        font-weight: 500;
        color: white;
        margin-bottom: 18px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
        line-height: 1.15;
    }

    .hero p {
        font-size: 18px;
        font-weight: 300;
        color: #f2f2f2;
        margin-bottom: 26px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
    }

    .btn-hero {
        background: var(--primary);
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        font-weight: 500;
        border-radius: 4px;
        font-size: 17px;
        transition: 0.3s;
        display: inline-block;
    }

    .btn-hero:hover {
        background: var(--primary-dark);
    }

    /* Hakkımızda */
    .about {
        max-width: 1120px;
        margin: 0 auto;
        padding: 45px 20px;
        display: grid;
        grid-template-columns: 390px minmax(0, 1fr);
        gap: 22px;
        align-items: center;
        background: var(--white);
    }

    .about img {
        width: 100%;
        max-width: 370px;
        display: block;
        border-radius: 10px;
        box-shadow: 10px 10px 0 rgba(141, 106, 82, 0.14);
    }

    .about h2 {
        color: var(--primary);
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 12px;
        font-weight: 500;
        letter-spacing: 1.2px;
    }

    .about p {
        font-weight: 300;
        color: var(--text-gray);
        font-size: 17px;
        max-width: 620px;
    }

    /* Hizmet Kartları */
    .services {
        padding: 45px 5%;
        background: var(--light-bg);
        text-align: center;
    }

    .services > h2 {
        color: var(--text-dark);
        font-size: 24px;
        margin-bottom: 8px;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* masaüstü 3 */
    gap: 14px;
    margin-top: 26px;
}

/* tablet */
@media (max-width: 992px){
    .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobil */
@media (max-width: 576px){
    .services-grid{
        grid-template-columns: 1fr;
    }
}

    .service-card {
        background: white;
        border: 1px solid var(--line);
        overflow: hidden;
        border-radius: 8px;
    }

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .service-card h4 {
        padding: 15px;
        font-size: 18px;
        color: var(--text-dark);
        font-weight: 400;
    }

    /* NEDEN BİZ */
    .why-us {
        padding: 45px 5%;
        background:
            repeating-linear-gradient(
                135deg,
                #f5f3f0,
                #f5f3f0 6px,
                #faf8f6 6px,
                #faf8f6 12px
            );
    }

    .why-us__top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 30px;
    }

    .why-us__title {
        font-size: 28px;
        font-weight: 600;
        color: var(--text-dark);
        position: relative;
        display: inline-block;
    }

    .why-us__title span {
        color: var(--primary);
    }

    .why-us__title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 60px;
        height: 3px;
        background: var(--primary);
    }

    .why-us__desc {
        max-width: 520px;
        font-size: 15px;
        color: var(--text-gray);
        line-height: 1.6;
    }

    .why-us__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .why-us__card {
        background: #fff;
        border-radius: 6px;
        padding: 26px 22px;
        border: 1px solid var(--line);
        position: relative;
    }

    .why-us__card h3 {
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .why-us__card p {
        font-size: 14px;
        color: var(--text-gray);
        line-height: 1.6;
    }

    .why-us__icon {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f4f1ed;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 16px;
    }

    /* Referans İşlerim */
    .references {
        padding: 45px 5%;
        background: var(--white);
    }

    .references-head {
        text-align: center;
        margin-bottom: 24px;
    }

    .references-head h2 {
        color: var(--text-dark);
        font-size: 28px;
        margin-bottom: 8px;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    .gallery-section-title {
        color: var(--text-dark);
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 14px;
    }

    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 26px;
    }

    .photo-gallery img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
        border: 1px solid var(--line);
    }

    .video-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .video-card {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        overflow: hidden;
    }

    .video-thumb {
        position: relative;
        display: block;
    }

    .video-thumb img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: rgba(32, 36, 43, 0.78);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-play i {
        color: var(--white);
        font-size: 20px;
        margin-left: 3px;
    }

    .video-card h4 {
        padding: 14px 16px 6px;
        font-size: 17px;
        color: var(--text-dark);
        font-weight: 400;
    }

    .video-card p {
        padding: 0 16px 16px;
        font-size: 14px;
        color: var(--text-gray);
        font-weight: 300;
    }

    /* CTA Alanı */
    .cta-section {
        padding: 45px 5%;
        text-align: center;
        background:
            linear-gradient(rgba(32, 36, 43, 0.66), rgba(32, 36, 43, 0.66)),
            url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .cta-box {
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-box h2 {
        font-size: 34px;
        line-height: 1.2;
        color: var(--white);
        font-weight: 500;
        margin-bottom: 14px;
    }

    .cta-box p {
        font-size: 17px;
        color: rgba(255,255,255,0.88);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-cta {
        display: inline-block;
        padding: 14px 28px;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 500;
        transition: 0.3s;
    }

    .btn-cta.primary {
        background: var(--primary);
        color: var(--white);
    }

    .btn-cta.primary:hover {
        background: var(--primary-dark);
    }

    .btn-cta.secondary {
        border: 1px solid rgba(255,255,255,0.34);
        color: var(--white);
        background: rgba(255,255,255,0.08);
    }

    .btn-cta.secondary:hover {
        border-color: rgba(255,255,255,0.55);
        background: rgba(255,255,255,0.14);
        color: var(--white);
    }

    /* SSS */
    .faq-section {
        padding: 45px 5%;
        background: var(--white);
    }

    .faq-wrap {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-head {
        text-align: center;
        margin-bottom: 24px;
    }

    .faq-head h2 {
        font-size: 28px;
        color: var(--text-dark);
        font-weight: 500;
        margin-bottom: 10px;
    }

    .faq-list {
        display: grid;
        gap: 12px;
    }

    .faq-item {
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        padding: 18px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
        color: var(--text-dark);
        font-weight: 500;
        margin-bottom: 8px;
    }

    .faq-item p {
        font-size: 15px;
        color: var(--text-gray);
        font-weight: 300;
        margin: 0;
    }

    /* Footer */
    footer {
        background: #1f232a;
        color: white;
        padding: 40px 5% 18px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 26px;
    }

    .footer-col h4 {
        border-bottom: 2px solid var(--primary);
        padding-bottom: 8px;
        margin-bottom: 14px;
        width: fit-content;
        font-weight: 500;
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
        opacity: 0.88;
        font-weight: 300;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li i {
        color: var(--primary);
        margin-right: 10px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 12px 0 0;
        margin-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.14);
        font-size: 12px;
        line-height: 1.5;
        background: transparent;
        color: #fff;
    }

    .footer-bottom a {
        color: #fff;
        text-decoration: none;
        font-size: 12px;
    }

    .footer-bottom a:hover {
        text-decoration: underline;
    }

    .footer-bottom .sep {
        margin: 0 6px;
        opacity: .6;
    }
    
    .footer-brand{
    display:inline-flex;
    align-items:center;
    margin-bottom:20px;
    color:#fff;
    font-size:24px;
    font-weight:500;
    letter-spacing:.3px;
    line-height:1;
}

.footer-brand span{
    color:#fff;
    margin-left:5px;
    font-weight:400;
}

    /* Mobil Ayarlar */
    @media (max-width: 992px) {
        .why-us__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .top-bar {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            text-align: center;
            padding: 8px 14px;
            font-size: 12px;
        }

        .top-bar > div {
            width: 100%;
        }

        .top-bar span {
            display: inline-block;
            margin: 0 4px;
        }

        header {
            padding: 14px 5%;
        }

        nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 5px 10px rgba(0,0,0,0.08);
            padding: 20px;
        }

        nav.active {
            display: flex;
        }

        nav a {
            margin: 10px 0;
            color: var(--text-dark);
        }

        .hamburger {
            display: block;
        }

        .hero {
            min-height: 320px;
            padding: 52px 5%;
        }

        .hero h1 {
            font-size: 28px;
        }

        .about {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 34px 20px;
            text-align: center;
        }

.about img {
    max-width: 100%;
    width: 100%;
}

        .about p {
            font-size: 16px;
            max-width: 100%;
        }

        .services,
        .references,
        .cta-section,
        .faq-section,
        .why-us {
            padding: 38px 5%;
        }

        .photo-gallery,
        .video-gallery,
        .stats,
        .why-us__grid {
            grid-template-columns: 1fr;
        }

        .why-us__top {
            flex-direction: column;
            gap: 14px;
            margin-bottom: 22px;
        }

        .why-us__desc {
            max-width: 100%;
        }

        .cta-box h2 {
            font-size: 26px;
        }

        .cta-box p {
            font-size: 16px;
        }

        .cta-actions {
            flex-direction: column;
        }

        .btn-cta {
            width: 100%;
        }

        .faq-head h2 {
            font-size: 24px;
        }

        .faq-item h3 {
            font-size: 17px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .footer-bottom > div {
            width: 100%;
        }
    }