body {
    margin: 0;
    background: #f4f4f4;
    font-family: Arial, sans-serif;
    color: #222;
}

/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

.main-nav ul li a:hover {
    color: #007bff;
}

/* HERO */
.hero-main {
    background: url('/assets/img/backgrounds/header-bg.jpg') center/cover no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: white;
    font-size: 28px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* SERVICES GRID */
.service-box {
    width: 260px;
    height: 160px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    text-align: center;
    transition: 0.3s;
}

.service-box:hover {
    transform: scale(1.05);
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #bbb;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}
.hero-main {
    position: relative;
    padding: 160px 20px;
    text-align: center;
}

.hero-main .hero-overlay {
    background: rgba(0,0,0,0.55);
    padding: 60px;
    border-radius: 12px;
    display: inline-block;
}

.hero-main h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-main p {
    color: #ddd;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-btn {
    background: #28a745;
    padding: 12px 30px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
}

.hero-btn:hover { background: #1e7e34; }

/* HİZMETLER */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.service-box {
    display: flex;
    flex-direction: column;
    width: 260px;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
    overflow: hidden;
    transition: 0.3s;
}

.service-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-box span {
    padding: 18px;
    font-size: 17px;
    font-weight: bold;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* NEDEN BİZ */
.why-us {
    background: #fff;
    padding: 60px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
}

.why-item {
    background: #f0f0f0;
    padding: 25px;
    border-radius: 10px;
}

/* MARKALAR */
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.brand-logos img {
    height: 60px;
    opacity: 0.8;
    transition: 0.2s;
}

.brand-logos img:hover {
    opacity: 1;
}

/* GOOGLE MAPS */
.map-box {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

/* WHATSAPP BUTON */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 25px;
    right: 25px;
    z-index: 99;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}
