/* ICS (icsteknoloji.com) tarzı stiller - Mergen Technologies */

/* Görünürlük: desktop = mobgiz, mobile = deskgiz */
.deskgiz { display: none !important; }
.mobgiz { display: flex !important; }
@media (max-width: 991px) {
    .mobgiz { display: none !important; }
    .deskgiz { display: block !important; }
}

/* ----- Header row ----- */
.ics-header-row,
.ics-header-row .ics-navbar,
.ics-header-row .ics-navbar a,
.ics-header-row .megabtn,
.ics-header-row .megamenu-content a,
.ics-header-row .megacolumnd a {
    font-family: 'Inter', sans-serif;
}

.ics-header-row {
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid #eae9e9;
    padding: 10px 1% 10px 1%;
    background: #fff;
}

.ics-logo-col {
    margin: auto;
    text-align: center;
}

.ics-logo-col .logo img,
.ics-logo-col .logo-img-header {
    max-width: 100%;
    height: auto;
    max-height: 48px;
}

/* ----- Navbar (yatay menü) ----- */
.ics-navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.ics-navbar > a {
    padding: 12px 14px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.2s;
}

.ics-navbar > a:hover {
    color: #b88630;
}

.ics-navbar > a.nav-border {
    border-right: 1px solid #eae9e9;
}

/* ----- Megamenu ----- */
.megamenu {
    position: relative;
    display: inline-block;
}

.megabtn {
    background: none;
    border: none;
    padding: 12px 14px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.megabtn:hover { color: #b88630; }

.megabtn-lang {
    border-right: 1px solid #eae9e9;
}

.megamenu-content,
.megamenu-contentd {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 600px;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    padding: 20px;
}

.megamenu:hover .megamenu-content,
.megamenu:hover .megamenu-contentd {
    display: block;
}

.megarow {
    display: flex;
    gap: 30px;
}

.megacolumn {
    flex: 1;
}

.megacolumn a {
    display: block;
    padding: 6px 20px 6px 0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.megacolumn a:hover { color: #b88630; }

.megacolumn hr {
    margin: -1px 0 10px 20px;
    width: 75%;
    border: none;
    border-top: 1px solid #eee;
}

.megamenu-logo {
    width: 40%;
    opacity: 0.8;
}

.megamenu-title {
    font-size: 17px;
    font-weight: 600;
    padding: 0 20px;
    color: #333;
    margin-bottom: 4px;
}

.megamenu-desc {
    color: #a6a4a4;
    font-size: 12px;
    padding: 0 20px;
}

.megacolumnd {
    width: 210px;
    padding: 8px 0;
}

.megacolumnd a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.megacolumnd a:hover { color: #b88630; }

.lang-flag { margin-right: 6px; }

/* ----- Overlay (sağdan açılan panel) ----- */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background: #f5f5f5;
    box-shadow: -8px 0 24px rgba(0,0,0,0.15);
    overflow-x: hidden;
    transition: width 0.4s ease;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #b88630;
    text-decoration: none;
    font-weight: 300;
}

.overlay .closebtn:hover { color: #081328; }

.overlay-content {
    position: relative;
    top: 15%;
    width: 100%;
    padding: 30px 40px;
    text-align: left;
}

.overlay-logo { width: 60%; max-width: 200px; }
.overlay-logo-text { font-size: 1.25rem; font-weight: 700; color: #333; }

.overlay-content hr { width: 75%; margin: 20px 0; border-color: #eee; }
.overlay-content p { color: #555; font-size: 14px; margin-bottom: 16px; }
.overlay-content .topbarsocial { margin-right: 12px; color: #b88630; font-size: 20px; }

.overlay-trigger {
    cursor: pointer;
    margin-left: 30px;
    padding: 10px 0;
    color: #333;
    font-size: 20px;
}

.overlay-trigger:hover { color: #b88630; }

/* ----- Mobil menü ----- */
.ics-mobile-header { background: #fff; border-bottom: 1px solid #eae9e9; }

.mobilmenubutton {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobilmenuicon {
    width: 24px;
    height: 2px;
    background: #333;
}

.mobile-logo-img { max-height: 40px; width: auto; }

.mobilmenu-content {
    display: none;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid #eee;
}

.mobilmenu-content.show { display: block; }

.mobilmenu-content li { margin: 0; }
.mobilmenu-content li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
}

.mobilmenu-content li a:hover { background: #f5f5f5; color: #b88630; }

.dropdown-btn-wrap { position: relative; }
.dropdown-btn { cursor: pointer; }
.dropdown-container { display: none; padding-left: 20px; }
.dropdown-container ul { list-style: none; padding: 0; margin: 0; }
.dropdown-container li a { padding: 10px 15px; font-size: 14px; }

/* ----- Sayfa başlıkları (title1, title2) ----- */
.title1 {
    display: block;
    font-size: 1rem;
    color: #b88630;
    font-weight: 600;
    margin-bottom: 2px;
}

.title2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.title2 + hr { width: 70%; margin-left: 0; border-color: #b88630; opacity: 0.5; }

/* ----- Butonlar ----- */
.btn5 {
    display: inline-block;
    padding: 10px 24px;
    background: #b88630;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn5:hover { background: #081328; color: #fff !important; }

/* ----- Carousel / Slider ----- */
.carousel-caption {
    bottom: auto;
    top: 38%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    padding: 0 20px;
}

.carousel-caption .slider-caption-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.carousel-caption .slider-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.slider-detail {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    margin-bottom: 18px;
}

.slider-button.btn1 {
    padding: 12px 28px;
    background: #b88630;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.2s;
    margin-top: 8px;
}

.slider-button.btn1:hover { background: #081328; color: #fff; }

.fill {
    min-height: 480px;
    background-size: cover;
    background-position: center;
}

.carousel-control-left, .carousel-control-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 56px;
    height: 56px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(8, 19, 40, 0.5);
    border-radius: 50%;
    opacity: 0.9;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-control-left:hover, .carousel-control-right:hover {
    opacity: 1;
    background: rgba(184, 134, 48, 0.9);
    color: #fff;
}

.carousel-control-left i, .carousel-control-right i {
    font-size: 1.5rem;
}

.carousel-control-prev.carousel-control-left { left: 20px; right: auto; }
.carousel-control-next.carousel-control-right { right: 20px; left: auto; }

.carousel-control-prev, .carousel-control-next {
    width: 56px;
    height: 56px;
    padding: 0;
}

/* ----- Hizmet kartları (abrw) ----- */
.abrw {
    background: #fff;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.abrw img { width: 100%; height: 180px; object-fit: cover; }
.abtitle { font-size: 1.1rem; font-weight: 600; color: #333; padding: 15px 15px 5px; margin: 0; }
.abrw hr { width: 65%; margin: 8px 0 10px 16px; border-color: #eee; }
.abdesc { font-size: 13px; color: #666; padding: 0 15px 12px; margin: 0; line-height: 1.4; }
.abrw .btn5 { margin: 0 15px 15px; font-size: 12px; }

/* ----- Blog kartları ----- */
.bltitle { font-size: 1rem; font-weight: 600; color: #333; margin: 12px 0 10px; line-height: 1.3; }
.blimg { border-radius: 4px; height: 180px; object-fit: cover; width: 100%; }

/* ----- Slogan bölümü ----- */
.slogan-row {
    margin: 120px 0 0 0;
    min-height: 344px;
    background-size: cover;
    background-position: center;
    background-color: #081328;
}

.slogan-card {
    background-size: cover;
    border-radius: 15px;
    min-height: 425px;
    margin-top: -70px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.35);
}

.slogan-text {
    padding: 40px 32px 40px 24px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
}

.slogan-text p { color: #fff; margin-bottom: 0; }

.slogan-text .slogan-big {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    min-width: min(100%, 520px);
    max-width: 100%;
}

.slogan-text .slogan-desc {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.55;
    max-width: 680px;
}

/* ----- Ortaklar / Sponsor ----- */
.sponsor {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
}

.sponsor:hover { opacity: 1; filter: grayscale(0); }

/* ----- Footer CTA (fcall) ----- */
.fcall {
    background: #081328;
    margin: 0;
    padding: 25px 0;
}

.fcall-item {
    margin: auto;
    text-align: center;
}

.fcall-item:first-child { border-right: 1px solid rgba(255,255,255,0.4); }

.fcall a { color: #fff; text-decoration: none; }
.fcall a:hover { color: #fff; opacity: 0.9; }

.callphone2 { font-size: 28px; margin-bottom: 5px; }
.topbartext3 { font-size: 1.1rem; font-weight: 600; margin: 0; }

/* ----- Footer ----- */
#footer {
    background: #081328;
    color: #f5f5f5;
    padding: 50px 0 30px;
}

#footer .pr2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

#footer .pr {
    font-size: 14px;
    margin-bottom: 10px;
}

#footer .pr a { color: #9b8777; }
#footer .pr a:hover { color: #c9b896; }

#footer .pr i { color: #9b8777; margin-right: 8px; width: 18px; }

.socialicon {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 8px;
    color: #f5f5f5;
    transition: background 0.2s;
}

.socialicon:hover { background: #b88630; color: #fff; }

.copyright { padding: 20px 0; text-align: center; }
.copyright hr { background: rgba(255,255,255,0.3); border: none; margin-bottom: 15px; }
.copyright p { color: #f5f5f5; margin: 0; font-size: 14px; }
.copyright strong { color: #fff; }

/* ----- Hakkımızda sayfası (tancan about + Mergen renkleri) ----- */
.about-page .page-header {
    background: #081328;
    color: #fff;
    text-align: center;
    padding: 100px 20px 70px;
    margin-top: 0;
}

.about-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-page .page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-logo-wrap {
    margin-bottom: 1.5rem;
}

.about-logo-wrap img {
    height: 48px;
    width: auto;
    max-width: 220px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(8,19,40,0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-page .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.about-page .stat-item h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #b88630;
    margin-bottom: 0.35rem;
}

.about-page .stat-item p {
    color: #475569;
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
}

.mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(8,19,40,0.1);
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: #b88630;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.mv-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-page .about-image {
        order: -1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-page .page-header h1 {
        font-size: 2rem;
    }
}

/* ----- İletişim sayfası ----- */
.contact-page .page-header {
    background: #081328;
    color: #fff;
    text-align: center;
    padding: 100px 20px 70px;
    margin-top: 0;
}

.contact-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-page .page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0 100px;
    background: #fff;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    border-color: #b88630;
    box-shadow: 0 8px 24px rgba(184, 134, 48, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: #081328;
    color: #b88630;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon i {
    font-size: 1.25rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: #081328;
    font-weight: 500;
}

.contact-card a:hover {
    color: #b88630;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.contact-social {
    margin-top: 1.5rem;
}

.contact-social-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 0.75rem;
}

.contact-social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #081328;
    color: #fff;
    border-radius: 8px;
    margin-right: 8px;
    transition: background 0.2s, color 0.2s;
}

.contact-social-link:hover {
    background: #b88630;
    color: #fff;
}

.contact-success-msg {
    padding: 1rem 1.25rem;
    background: rgba(184, 134, 48, 0.12);
    color: #081328;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 0.5rem;
}

.contact-form .required {
    color: #b88630;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #b88630;
    box-shadow: 0 0 0 3px rgba(184, 134, 48, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    padding: 14px 32px;
    background: #b88630;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-submit:hover {
    background: #081328;
    color: #fff;
}

.contact-map-wrap {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.contact-map-address {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1rem;
}

.contact-map-address i {
    color: #b88630;
    margin-right: 8px;
}

.contact-map-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

.contact-map-note a {
    color: #b88630;
    font-weight: 500;
}

.contact-map-note a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-col {
        order: -1;
    }
}

@media (max-width: 576px) {
    .contact-page .page-header h1 {
        font-size: 2rem;
    }
    .contact-map-inner iframe {
        height: 320px !important;
    }
}

/* ----- Referanslarımız sayfası ----- */
.references-page .page-header {
    background: #081328;
    color: #fff;
    text-align: center;
    padding: 100px 20px 70px;
    margin-top: 0;
}

.references-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.references-page .page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.references-content {
    padding: 80px 0 100px;
    background: #fff;
}

.references-message-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.references-icon-wrap {
    width: 80px;
    height: 80px;
    background: #081328;
    color: #b88630;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.references-icon-wrap i {
    font-size: 2rem;
}

.references-message-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 1rem;
}

.references-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 1.25rem;
}

.references-message-box p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.references-cta {
    margin-top: 2rem;
}

.references-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b88630;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.references-btn:hover {
    background: #081328;
    color: #fff;
}

/* Ana sayfa referanslar bloğu */
.references-home-block {
    background: #f8fafc !important;
    border-radius: 8px;
    padding: 40px 20px !important;
    border: 1px solid #e2e8f0;
}

.references-home-message {
    padding: 0 1rem;
}

.references-home-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #081328;
    margin-bottom: 0.5rem !important;
}

.references-home-desc {
    color: #64748b;
    margin-bottom: 1.25rem !important;
}

.references-home-message .btn5 {
    margin-bottom: 1rem;
}

.references-home-link-wrap {
    display: block;
    margin-top: 0.75rem;
}

.references-home-link-wrap a {
    color: #b88630;
    font-weight: 500;
    text-decoration: none;
}

.references-home-link-wrap a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .references-page .page-header h1 {
        font-size: 2rem;
    }
}

/* ----- Hizmetlerimiz sayfası ----- */
.services-page .page-header {
    background: #081328;
    color: #fff;
    text-align: center;
    padding: 100px 20px 70px;
    margin-top: 0;
}

.services-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services-page .page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.service-list-content {
    padding: 80px 0 100px;
    background: #fff;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-list-card {
    display: block;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-list-card:hover {
    border-color: #b88630;
    box-shadow: 0 12px 28px rgba(184, 134, 48, 0.12);
    transform: translateY(-2px);
}

.service-list-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: #081328;
    color: #b88630;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.service-list-icon i {
    font-size: 1.5rem;
}

.service-list-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 0.75rem;
}

.service-list-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

.service-detail-content {
    padding: 80px 0 100px;
    background: #fff;
}

.service-detail-body {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-detail-body p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-detail-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #081328;
    margin: 2rem 0 1rem;
}

.service-detail-body ul {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
}

.service-detail-body li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-detail-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.service-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b88630;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.service-cta-btn:hover {
    background: #081328;
    color: #fff;
}

.service-cta-link {
    color: #081328;
    font-weight: 500;
    text-decoration: none;
}

.service-cta-link:hover {
    color: #b88630;
}

/* ----- Hizmet detay sayfası (Tancan tarzı: intro + kartlar + metin/resim + CTA) ----- */
.service-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 1.5rem;
}

.service-intro-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.service-stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8,19,40,0.06);
}

.service-stat-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #b88630;
    margin: 0 0 0.35rem 0;
}

.service-stat-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.service-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8,19,40,0.12);
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-section {
    padding: 80px 0;
}

.service-cards-section {
    background: #fff;
}

.service-detail-section {
    background: #f8fafc;
}

.service-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 0.5rem;
}

.service-section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(184, 134, 48, 0.15);
    border-color: rgba(184, 134, 48, 0.3);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: #081328;
    color: #b88630;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.service-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-block-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #081328;
    margin-bottom: 1.25rem;
}

.service-block-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-feature-item i {
    color: #b88630;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-feature-item span {
    color: #475569;
    font-weight: 500;
}

.service-block-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8,19,40,0.1);
}

.service-block-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-cta-section {
    padding: 80px 0;
    background: #081328;
    color: #fff;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.service-cta-content .service-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #b88630;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}

.service-cta-content .service-cta-btn:hover {
    background: #fff;
    color: #081328;
}

.service-cta-content .service-cta-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
}

.service-cta-content .service-cta-link:hover {
    color: #b88630;
}

@media (max-width: 991px) {
    .service-intro-grid,
    .service-content-block {
        grid-template-columns: 1fr;
    }
    .service-intro-image {
        order: -1;
    }
    .service-intro-image img {
        height: 320px;
    }
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-block-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .services-page .page-header h1 {
        font-size: 2rem;
    }
    .service-list-grid {
        grid-template-columns: 1fr;
    }
    .service-intro-text h2 {
        font-size: 1.5rem;
    }
    .service-stats {
        grid-template-columns: 1fr;
    }
    .service-section-header h2 {
        font-size: 1.75rem;
    }
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-cta-content h2 {
        font-size: 1.5rem;
    }
}
