/* =================== GLOBAL =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* ============== HERO — Modern ============== */
.hero-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: linear-gradient(135deg, #eef2f7, #f7f9fc);
    flex-wrap: wrap;
}

.hero-content {
    max-width: 550px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.cta-btns .btn {
    margin-right: 15px;
    margin-top: 8px;
}

.btn {
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background: #e6f5ff;
}

.hero-graphic img {
    max-width: 450px;
    width: 100%;
}

/* ============== SERVICES ============== */
.services h2 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 30px;
    color: #222;
}

.service-grid {
    display: flex;
    justify-content: center;  /* Ortala */
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.service-item {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.service-item h3 {
    margin-bottom: 8px;
    font-size: 22px;
    color: #222;
}

.service-item p {
    font-size: 16px;
    color: #555;
    margin-top: auto;
}

/* ============== BENEFITS / FEATURES ============== */
.quick-benefits {
    display: flex;
    justify-content: center;  /* Ortala tüm satırı */
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
    text-align: center;
}

.benefit-item {
    flex: 1 1 240px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    min-width: 240px;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #222;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

/* ============== WHY US ============== */
.why-us {
    text-align: center;
    padding: 30px 0;
}

.why-us h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.why-us ul {
    list-style: none;
    font-size: 18px;
    color: #444;
    padding-left: 0;
}

/* ============== SERVICE AREAS ============== */
.service-areas {
    text-align: center;
    padding: 25px 0;
    font-size: 19px;
    color: #555;
}

/* ============== CONTACT FORM ============== */
.contact h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact button {
    background: #007bff;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #0056b3;
}

/* ============== FOOTER ============== */
.site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-cols {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ================= TOP PHONE BAR — BIG / VISIBLE ================= */
.top-phone-bar {
    width: 100%;
    background: #007bff;
    padding: 14px 20px;       /* Daha yüksek padding = daha büyük çubuk */
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Hafif gölge */
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-phone-bar a {
    color: #fff;
    font-size: 22px;           /* Büyük yazı */
    font-weight: bold;
    text-decoration: none;
}

.top-phone-bar a:hover {
    text-decoration: underline;
}


/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
    .hero-new {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    .hero-graphic img {
        max-width: 300px;
    }
    .cta-btns .btn {
        display: block;
        margin: 8px auto;
    }
    .quick-benefits {
        flex-direction: column;
        gap: 15px;
    }
    .top-phone-bar a {
        font-size: 24px;  /* Mobilde daha büyük yazı */
    }
}
