/* =========================================================
   GENEL AYARLAR
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f6fa;
    color: #222;
    line-height: 1.5;
    font-size: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 60px 0;
}

/* =========================================================
   BUTONLAR
   ========================================================= */

.btn-primary,
.btn-hero-quote,
.btn-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    gap: 8px;
}

.btn-primary:hover,
.btn-hero-quote:hover,
.btn-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    background: linear-gradient(135deg, #ffa344, #e0525a);
}

.btn-ghost,
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid #ff7e0a;
    color: #ff7e0a;
    background-color: #fff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    gap: 8px;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-ghost:hover,
.btn-hero-call:hover {
    background-color: #ff7e0a;
    color: #fff;
    border-color: #ff7e0a;
    transform: translateY(-1px);
}

.btn-hero-call i,
.btn-hero-quote i,
.btn-form-submit i,
.btn-primary i,
.btn-ghost i {
    font-size: 14px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    color: #fff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.hero-text {
    flex: 1 1 340px;
    max-width: 580px;
}

.hero-text h1 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 14px;
}

.hero-text h1 span {
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    margin: 0 0 18px;
    font-size: 14px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.hero-badge i {
    font-size: 13px;
}

/* HERO FORM KARTI */

.hero-form-wrapper {
    flex: 1 1 320px;
    max-width: 380px;
}

.hero-form-card {
    background-color: #ffffff;
    color: #222;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.hero-form-card h2 {
    font-size: 20px;
    margin: 0 0 6px;
}

.hero-form-card p {
    font-size: 13px;
    margin: 0 0 16px;
    color: #555;
}

.hero-form .form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-form label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    border-radius: 8px;
    border: 1px solid #d3d8e5;
    padding: 8px 10px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: #fdfdff;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    border-color: #ff7e0a;
    box-shadow: 0 0 0 2px rgba(255, 126, 10, 0.18);
}

.hero-form textarea {
    resize: vertical;
}

.hero-form .form-note {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #888;
}

/* Honeypot alanını gizle */
.hp-field {
    display: none;
}

/* HERO PLACEHOLDER GÖRSEL ALANI */

.hero-placeholder-image {
    position: absolute;
    right: -80px;
    bottom: -40px;
    width: 260px;
    height: 260px;
    border-radius: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0.35;  <-- BUNU KALDIRDIK */
    transform: rotate(-7deg);
    font-size: 12px;
    text-align: center;
    padding: 10px;
    overflow: hidden; /* resim dışarı taşmasın diye opsiyonel */
}

/* Placeholder yazısı soluk kalsın */
.hero-placeholder-image span {
    opacity: 0.35;
}

/* Gerçek görsel tam opak ve kutuyu doldursun */
.hero-placeholder-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    opacity: 1;
}

/* =========================================================
   GENEL BÖLÜM BAŞLIKLARI
   ========================================================= */

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #222;
}

.section-header p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* =========================================================
   HİZMETLER
   ========================================================= */

.services-section {
    background-color: #f8f9fc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 16px 16px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid #eceff6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 2px;
}

.service-card h3 {
    font-size: 16px;
    margin: 0;
}

.service-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.service-placeholder {
    margin-top: 10px;
    border-radius: 10px;
    border: 1px dashed #d3d7e5;
    padding: 18px;
    font-size: 12px;
    color: #a0a4b8;
    text-align: center;
    background: #f9fafc;
}

.services-cta {
    margin-top: 30px;
    text-align: center;
}

/* =========================================================
   HAKKIMIZDA & KURUMSAL BLOK – SPLIT CARD LAYOUT
   ========================================================= */

.about-section,
.references-section {
    background-color: #f5f6fa;
    padding: 60px 0;
}

/* Kartın kendisi */
.about-inner,
.references-inner {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 28px 30px;
    box-shadow: 0 18px 45px rgba(15, 18, 34, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;  /* metin ve görsel aynı yükseklik */
    gap: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;      /* içerdeki çizgiler kart dışına taşmasın */
}

/* Kart hover hareketi */
.about-inner:hover,
.references-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 18, 34, 0.12);
}

/* NEON LIGHT RAIL – V3: DAHA PARLAK, GARANTİ GÖRÜNÜR */
.about-inner::before,
.references-inner::before,
.about-inner::after,
.references-inner::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    height: 3px; /* görünür ama hâlâ ince */
    border-radius: 999px;

    /* koyu ve açık turuncu-kırmızı, beyazı az tuttuk ki görünür olsun */
    background: linear-gradient(
        90deg,
        #ff7e0a 0%,
        #ffb56a 20%,
        #ffe4b8 35%,
        #ff8a2b 50%,
        #be4046 70%,
        #ff7e0a 90%
    );
    background-size: 220% 100%;

    /* belirgin neon glow */
    box-shadow:
        0 0 8px rgba(255, 126, 10, 0.75),
        0 0 18px rgba(190, 64, 70, 0.65);

    opacity: 0.95;
    pointer-events: none;
    z-index: 0;

    /* blend mod yok -> beyaz fonda da kaybolmaz */
    /* mix-blend-mode: normal; */

    /* barın akışı net belli olsun diye hızlı ama çok da deli olmayan hız */
    animation: slyCardNeon 3.2s linear infinite;
}

/* üst çizgi */
.about-inner::before,
.references-inner::before {
    top: 14px;
}

/* alt çizgi */
.about-inner::after,
.references-inner::after {
    bottom: 14px;
}

/* HOVER’DA BİR TIK DAHA ENERJİK OLSUN */
.about-inner:hover::before,
.references-inner:hover::before,
.about-inner:hover::after,
.references-inner:hover::after {
    animation-duration: 1.8s;
    box-shadow:
        0 0 10px rgba(255, 126, 10, 0.95),
        0 0 26px rgba(190, 64, 70, 0.9);
}

/* biraz daha “show”lu neon animasyon */
@keyframes slyCardNeon {
    0% {
        background-position: -60% 50%;   /* ekranın solundan uzakta başlasın */
        opacity: 0.6;
        box-shadow:
            0 0 4px rgba(255, 126, 10, 0.4),
            0 0 10px rgba(190, 64, 70, 0.3);
    }
    20% {
        background-position: 10% 50%;    /* içeri girmeye başlıyor */
        opacity: 0.9;
        box-shadow:
            0 0 8px rgba(255, 150, 70, 0.7),
            0 0 18px rgba(190, 64, 70, 0.6);
    }
    50% {
        background-position: 100% 50%;   /* tam ortada, en parlak an */
        opacity: 1;
        box-shadow:
            0 0 12px rgba(255, 255, 255, 0.9),
            0 0 26px rgba(255, 160, 90, 0.95);
    }
    80% {
        background-position: 170% 50%;   /* sağa doğru çıkmaya başlıyor */
        opacity: 0.85;
        box-shadow:
            0 0 8px rgba(255, 126, 10, 0.6),
            0 0 18px rgba(190, 64, 70, 0.55);
    }
    100% {
        background-position: 240% 50%;   /* ekranın sağına doğru kaybolsun */
        opacity: 0.6;
        box-shadow:
            0 0 4px rgba(255, 126, 10, 0.4),
            0 0 10px rgba(190, 64, 70, 0.3);
    }
}





/* Metin kolonları */
.about-text,
.references-text {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; /* çizgilerin üstünde dursun */
}

.about-text h2,
.references-text h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.about-text p,
.references-text p {
    font-size: 14px;
    margin: 0 0 10px;
    color: #555;
}

/* Hakkımızda bullet listesi */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #444;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.about-list i {
    color: #ff7e0a;
    margin-top: 3px;
}

/* Görsel kolonları – hem about hem references için ortak */
.about-placeholder,
.references-placeholder {
    flex: 1 1 45%;
    min-width: 280px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 260px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); /* diagonal alt kenar */
    z-index: 1; /* çizgilerin üstünde */
}

/* Brand filter + yumuşak tonlar */
.about-placeholder img,
.references-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.2) sepia(0.15) saturate(0.9) contrast(1.03);
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hafif marka overlay – sıcak turuncu/kırmızı ton */
.about-placeholder::after,
.references-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 126, 10, 0.20),
        rgba(190, 64, 70, 0.20)
    );
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Hover’da hafif zoom ve renklerin açılması */
.about-placeholder:hover img,
.references-placeholder:hover img {
    transform: scale(1.03);
    filter: grayscale(0) sepia(0.05) saturate(1.05) contrast(1.05);
}

/* Eğer henüz görsel yoksa placeholder yazısı ortada görünsün */
.about-placeholder span,
.references-placeholder span {
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    padding: 8px 14px;
    border-radius: 999px;
    position: relative;
    z-index: 2;
}

/* Tablet / mobil düzeni */
@media (max-width: 992px) {
    .about-inner,
    .references-inner {
        padding: 22px 20px;
    }

    .about-inner::before,
    .references-inner::before,
    .about-inner::after,
    .references-inner::after {
        left: 18px;
        right: 18px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .references-section {
        padding: 50px 0;
    }

    .about-inner,
    .references-inner {
        flex-direction: column;
        padding: 18px 16px;
        gap: 18px;
    }

    .about-placeholder,
    .references-placeholder {
        min-height: 220px;
        clip-path: none;
    }

    .about-inner::before,
    .references-inner::before {
        top: 8px;
    }

    .about-inner::after,
    .references-inner::after {
        bottom: 8px;
    }
}

/* Hizmet kartlarına da hafif hover hareketi verelim */
.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 18, 34, 0.12);
}



/* =========================================================
   MÜŞTERİ YORUMLARI
   ========================================================= */

.testimonials-section {
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    background-color: #f9fafc;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #eceff6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.testimonial-text {
    margin: 0 0 10px;
    font-size: 13px;
    color: #444;
}

.testimonial-name {
    margin: 0;
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

/* =========================================================
   SSS
   ========================================================= */

.faq-section {
    background-color: #f8f9fc;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #e3e6f0;
}

.faq-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #222;
}

.faq-item p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* =========================================================
   ALT CTA
   ========================================================= */

.bottom-cta-section {
    color: #fff;
}

.bottom-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bottom-cta-text h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.bottom-cta-text p {
    margin: 0;
    font-size: 14px;
}

.bottom-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background-color: #10131a;
    color: #c9cedd;
    font-size: 13px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 28px 0 18px;
}

.footer-col h4 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #ffffff;
}

.footer-col p {
    margin: 0 0 6px;
    color: #c9cedd;
}

.footer-col a {
    color: #ffb977;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #272b37;
    padding: 10px 0 14px;
    font-size: 12px;
    text-align: center;
}

/* =========================================================
   MOBİL SABİT CTA
   ========================================================= */

.mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: space-evenly;
    gap: 8px;
    padding: 8px 10px;
    background-color: #ffffff;
    border-top: 1px solid #dde0eb;
    z-index: 999;
}

.mobile-cta-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    border-radius: 999px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
}

/* Yalnızca mobilde görünür olsun */
@media (max-width: 768px) {
    .mobile-fixed-cta {
        display: flex;
    }

    body {
        padding-bottom: 60px; /* CTA butonları için boşluk */
    }
}

/* =========================================================
   RESPONSIVE DÜZENLEMELER
   ========================================================= */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-placeholder-image {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
    }

    .hero-inner {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .bottom-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   PAGES & MEDIA – ORTAK STİLLER
   ========================================================= */

.admin-page-header {
    margin-bottom: 16px;
}

.admin-page-header h2 {
    margin: 0 0 4px;
    font-size: 18px;
    color: #222;
}

.admin-page-header p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.admin-alert {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 14px;
}

.admin-alert-success {
    background-color: #e5f7eb;
    color: #207a3b;
    border: 1px solid #b7e3c2;
}

.admin-alert-error {
    background-color: #ffe7e6;
    color: #a5251f;
    border: 1px solid #f3b5b0;
}

.admin-section {
    margin-bottom: 22px;
}

.admin-form-card {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid #e2e6f4;
    box-shadow: 0 8px 20px rgba(15, 18, 34, 0.05);
}

.admin-form h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #222;
}

.admin-form .form-group {
    margin-bottom: 12px;
}

.admin-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #dfe3f1;
    padding: 7px 10px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    background-color: #f9fafc;
}

.admin-form textarea {
    resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: #ff7e0a;
    box-shadow: 0 0 0 2px rgba(255, 126, 10, 0.15);
}

.field-hint {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #888;
}

.admin-form-actions {
    margin-top: 10px;
    text-align: right;
}

.admin-primary-btn {
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.admin-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* Hero görsel önizleme */
.hero-image-preview {
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}

.hero-image-preview img {
    display: block;
    margin-top: 6px;
    max-width: 220px;
    border-radius: 10px;
    border: 1px solid #e3e6f4;
}

/* Medya grid */

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.media-item {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e6f4;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.media-thumb {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f6fb;
    text-align: center;
}

.media-thumb img {
    max-height: 140px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.media-meta {
    font-size: 11px;
    color: #555;
}

.media-filename {
    font-weight: 600;
    margin-bottom: 2px;
}

.media-size {
    margin-bottom: 4px;
    color: #888;
}

.media-alt-form {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.media-alt-form input[type="text"] {
    flex: 1 1 auto;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
}

.media-alt-form button {
    flex: 0 0 auto;
    border-radius: 999px;
    border: none;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background-color: #f0f2ff;
    color: #444;
}

/* Sayfalar > Ana sayfa içeriği: tek kolon görünüm */
.page-form-grid.page-form-grid-single {
    grid-template-columns: minmax(0, 1fr); /* tek kolon */
}

/* İstersen ufak bir genişlik düzeltmesi de ekleyebilirsin */
.page-form-grid.page-form-grid-single .page-form-main {
    max-width: 100%;
}


.service-card .service-image {
    position: relative;
    margin-top: 16px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    height: 170px;      /* sabit yükseklik: hepsi aynı oranda kırpılır */
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: saturate(0.9) contrast(1.05); /* renkleri hafif dengeler */
}

/* Turuncu-kırmızı brand overlay */
.service-card .service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 126, 10, 0.28),
        rgba(190, 64, 70, 0.28)
    );
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Hover'da hafif zoom, canlılık */
.service-card:hover .service-image img {
    transform: scale(1.03);
    filter: saturate(1.05);
}


.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.25) saturate(0.8) contrast(1.05);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
    filter: grayscale(0) saturate(1.1);
}

/* =========================================================
   KAYNAK İŞLERİ SAYFASI
   ========================================================= */

.service-page {
    background-color: #f5f6fa;
}

/* Genel section boşlukları */
.service-section {
    padding: 72px 0;
}

.service-section:nth-of-type(even) {
    background-color: #ffffff;
}

/* ---------------------------------------------------------
   HERO – KAYNAK İŞLERİ
   --------------------------------------------------------- */

.service-hero-section {
    color: #ffffff;
    padding: 80px 0 72px;
}

.service-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.service-hero-text {
    flex: 1.1;
    max-width: 600px;
}

.service-hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.18);
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-hero-kicker i {
    font-size: 13px;
}

.service-hero-text h1 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 14px;
}

.service-hero-text h1 span {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.service-hero-lead {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 560px;
}

.service-hero-lead strong {
    font-weight: 600;
}

.service-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.service-hero-bullets i {
    margin-top: 3px;
    font-size: 14px;
}

/* CTA butonları – mevcut buton class’larını kullanıyoruz */
.service-hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Rozetler */
.service-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.18);
    font-size: 12px;
}

/* Sağdaki kart ve görsel */

.service-hero-image-card {
    background-color: #ffffff;
    color: #222;
    border-radius: 26px;
    padding: 14px 14px 12px;
    box-shadow: 0 18px 45px rgba(15, 18, 41, 0.28);
    max-width: 360px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-hero-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}

.service-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Küçük istatistik kartları */

.service-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-hero-stat {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffefe0, #ffe4e6);
    font-size: 12px;
}

.service-hero-stat i {
    font-size: 16px;
    color: #ff7e0a;
    margin-top: 2px;
}

.service-hero-stat strong {
    display: block;
    font-size: 13px;
}

/* ---------------------------------------------------------
   NEDEN SLY SERVİS / ÖNE ÇIKANLAR
   --------------------------------------------------------- */

.section-header.left {
    text-align: left;
    max-width: 680px;
    margin-left: 0;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.service-feature-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 18px 18px 20px;
    box-shadow: 0 16px 40px rgba(15, 18, 41, 0.06);
    border: 1px solid rgba(15, 18, 41, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.service-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #ffffff;
    margin-bottom: 4px;
}

.service-feature-card h3 {
    font-size: 15px;
    margin: 0;
}

/* ---------------------------------------------------------
   HANGİ KAYNAK İŞLERİNİ YAPIYORUZ?
   --------------------------------------------------------- */

.service-scope-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.service-scope-text {
    flex: 1.1;
}

.service-scope-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-checklist i {
    margin-top: 3px;
    color: #ff7e0a;
}

.service-image-stack {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.service-image-main,
.service-image-secondary {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 18, 41, 0.18);
}

.service-image-main img,
.service-image-secondary img {
    display: block;
    width: 100%;
    height: auto;
}

.service-image-main {
    position: relative;
    z-index: 2;
}

.service-image-secondary {
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 60%;
    z-index: 1;
    opacity: 0.95;
}

/* ---------------------------------------------------------
   ÇALIŞMA SÜRECİ
   --------------------------------------------------------- */

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.service-process-step {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 16px 16px 18px;
    box-shadow: 0 16px 40px rgba(15, 18, 41, 0.05);
    border: 1px solid rgba(15, 18, 41, 0.04);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}

.service-process-step h3 {
    font-size: 15px;
    margin: 0 0 6px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ---------------------------------------------------------
   ÇEVRE & GÜVENLİK
   --------------------------------------------------------- */

.service-safety-inner {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.service-safety-text {
    flex: 1.1;
}

.service-safety-visual {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-safety-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.service-safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-safety-list i {
    margin-top: 3px;
    color: #be4046;
}

.service-safety-card {
    max-width: 280px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 20px 18px 18px;
    box-shadow: 0 18px 45px rgba(15, 18, 41, 0.14);
    text-align: center;
}

.service-safety-card i {
    font-size: 28px;
    color: #28a745;
    margin-bottom: 8px;
}

.service-safety-card h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

/* ---------------------------------------------------------
   SSS – KAYNAK İŞLERİ
   --------------------------------------------------------- */

.service-faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
}

.service-faq .faq-item {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 12px 32px rgba(15, 18, 41, 0.04);
    border: 1px solid rgba(15, 18, 41, 0.03);
}

.service-faq .faq-item h3 {
    font-size: 15px;
    margin: 0 0 6px;
}

.service-faq .faq-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 992px) {
    .service-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-visual {
        width: 100%;
        justify-content: flex-start;
    }

    .service-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-scope-inner,
    .service-safety-inner {
        flex-direction: column;
    }

    .service-scope-visual,
    .service-safety-visual {
        justify-content: flex-start;
    }

    .service-image-secondary {
        right: -12px;
        bottom: -18px;
    }
}

@media (max-width: 640px) {
    .service-hero-section {
        padding: 64px 0 56px;
    }

    .service-hero-text h1 {
        font-size: 26px;
    }

    .service-hero-text h1 span {
        font-size: 28px;
    }

    .service-feature-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-image-secondary {
        display: none;
    }

    .service-section {
        padding: 56px 0;
    }
}

/* =========================================================
   HEADER - TOP BAR & NAV BAR
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.top-bar {
    background: #f2f5fb;
    font-size: 12px;
    color: #555;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}

.top-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-text i {
    color: #ff7e0a;
}

.top-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #be4046;
}

.top-phone i {
    color: #be4046;
}

.nav-bar {
    background-color: #ffffff;
}

.nav-inner {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 20px;
}

/* LOGO */

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    font-size: 22px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 16px;
}

.logo-text {
    color: #333;
}

/* NAV MENÜ (desktop) */

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}


/* küçük underline efekti (desktop) */

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================================
   YENİ NAVBAR (BOOTSTRAP OFFCANVAS TASARIMI)
   ========================================================= */

/* Header sticky + gölge zaten var, tekrar güçlendirelim */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Top bar zaten tanımlı, dokunmuyoruz */

/* Ana Bootstrap navbar */
.main-navbar {
    background-color: #ffffff;
}

.main-navbar .container {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Logo – aynı stil, biraz da Bootstrap dostu */
.main-navbar .logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
}

.main-navbar .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 16px;
}

.main-navbar .logo-text {
    color: #333;
}

/* Hamburger butonu */
.nav-mobile-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px 8px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-icon {
    width: 24px;
    height: 18px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-mobile-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7e0a, #be4046);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Hamburger -> X animasyonu */
.nav-mobile-toggle.is-open .nav-mobile-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-mobile-toggle.is-open .nav-mobile-icon span:nth-child(2) {
    opacity: 0;
}
.nav-mobile-toggle.is-open .nav-mobile-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 992px) {
    .nav-mobile-toggle {
        display: none;
    }
}

/* Ana navigation */
.main-navbar .main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Linkler – desktop */
.main-navbar .nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    padding: 8px 0;
}

/* Desktop hover underline */
@media (min-width: 992px) {
    .main-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #ff7e0a, #be4046);
        transition: width 0.2s ease;
    }
    .main-navbar .nav-link:hover::after {
        width: 100%;
    }
}

/* Dropdown menü (servisler) – desktop görünümü */
.main-navbar .dropdown-menu.nav-dropdown-inner {
    min-width: 280px;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 18, 44, 0.18);
    border: 0;
}

/* Servis dropdown item’ları – var olan sınıfları kullanıyoruz */
.dropdown-item.nav-dropdown-link {
    display: block;
    padding: 8px 10px;
    border-radius: 12px;
    margin: 2px 0;
    background: #f9fafb;
    transition: background 0.15s ease, transform 0.08s ease;
}

.dropdown-item.nav-dropdown-link:hover {
    background: #fee2e2;
    transform: translateY(-1px);
}

.nav-dropdown-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.nav-dropdown-sub {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-top: 1px;
}

/* Dropdown ok işareti dönüşsün */
.main-navbar .dropdown-toggle::after {
    display: none; /* Bootstrap’in kendi oku */
}

.main-navbar .dropdown-toggle i {
    font-size: 11px;
    margin-left: 4px;
}

/* Bootstrap, aria-expanded değişimini otomatik yönetiyor */
.main-navbar .dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.18s ease;
}

/* CTA alanı */
.main-navbar .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar .nav-cta-call {
    padding-inline: 16px;
}

/* Offcanvas (mobil menü) tasarımı */
.main-nav-offcanvas {
    border-radius: 0;
}

@media (max-width: 991.98px) {
    .main-nav-offcanvas {
        width: 100%;
        max-width: 100%;
        background: radial-gradient(circle at top left, #ffe1c5 0, #f5f6fa 40%, #f4d0d5 100%);
    }

    .main-nav-offcanvas .offcanvas-header {
        padding: 12px 16px 4px;
    }

    .main-nav-offcanvas .offcanvas-title .logo-mark {
        font-size: 15px;
        padding: 3px 9px;
    }

    .main-nav-offcanvas .offcanvas-title .logo-text {
        font-size: 18px;
        color: #111827;
    }

    .main-nav-offcanvas .offcanvas-body {
        padding: 8px 16px 16px;
        gap: 18px;
    }

    .main-nav-offcanvas .main-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-nav-offcanvas .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 14px;
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.65);
        margin: 0;
    }

    .main-nav-offcanvas .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.95);
    }

    /* Dropdown mobilde düz liste gibi dursun */
    .main-nav-offcanvas .dropdown-menu.nav-dropdown-inner {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 8px 0 0;
        margin: 0;
    }

    .main-nav-offcanvas .dropdown-item.nav-dropdown-link {
        background: #ffffff;
    }

    /* CTA’lar mobilde tam genişlik, altta */
    .main-nav-offcanvas .nav-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 12px;
    }

    .main-nav-offcanvas .nav-cta .btn-ghost,
    .main-nav-offcanvas .nav-cta .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 11px 0;
    }

    /* Teklif butonu mobilde de görünsün */
    .main-nav-offcanvas .nav-cta-quote {
        display: inline-flex !important;
    }
}

/* Desktop’ta offcanvas gövdesi normal navbar gibi davransın */
@media (min-width: 992px) {
    .main-nav-offcanvas {
        position: static;
        transform: none;
        visibility: visible !important;
        background-color: transparent;
        box-shadow: none;
    }

    .main-nav-offcanvas .offcanvas-header {
        display: none;
    }

    .main-nav-offcanvas .offcanvas-body {
        display: flex !important;
        padding: 0;
    }

    .main-navbar .nav-cta {
        margin-left: 20px;
    }
}

/* menü açıkken arka plan scroll etmesin (var olan sınıfı kullanıyoruz) */
body.mobile-menu-open {
    overflow: hidden;
}


/* CAPTCHA alanı */
.form-group-captcha .captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.captcha-image {
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

/* Yenile butonu: küçük turuncu yuvarlak ikon */
.btn-captcha-refresh {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    background: linear-gradient(135deg, #ff7e0a, #be4046);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(190, 64, 70, 0.45);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        opacity 0.15s ease;
}

.btn-captcha-refresh i {
    font-size: 16px;
}

.btn-captcha-refresh:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(190, 64, 70, 0.55);
}

.btn-captcha-refresh:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(190, 64, 70, 0.35);
    opacity: 0.9;
}
