/* ---- Genel ---- */
.map-section iframe,
.map-section .map { width: 100%; height: 460px; border: 0; display: block; }
.contact-form-area { margin-top: 10px; }

/* ---- Alaşım kodları (detay + kart) ---- */
.alloy-codes p,
.service-block-three .text p {
    margin: 0 0 6px;
    font-weight: 600;
    letter-spacing: .3px;
}
.service-block-three .read-more {
    display: inline-block;
    margin-top: 14px;
    font-weight: 600;
    color: var(--theme-color1, #f9b000);
}
.service-block-three .read-more i { margin-left: 4px; }

/* ---- Katalog kartları ---- */
.catalog-list-section { padding: 80px 0; }
.catalog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}
.catalog-card__cover {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f2f2f2;
}
.catalog-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.catalog-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--theme-color1, #f9b000);
    color: #191919;
    font-size: 12px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}
.catalog-card__body { padding: 24px; }
.catalog-card__year {
    font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--theme-color1, #f9b000);
}
.catalog-card__title { margin: 8px 0 10px; font-size: 22px; }
.catalog-card__title a { color: inherit; }
.catalog-card__body p { color: #686a6f; margin-bottom: 18px; }

/* ---- Goreel form (cms_form çıktısı) ---- */
.goreel-form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}
.goreel-form-field { grid-column: span 12; display: flex; flex-direction: column; }
.goreel-form-col-1  { grid-column: span 1; }
.goreel-form-col-2  { grid-column: span 2; }
.goreel-form-col-3  { grid-column: span 3; }
.goreel-form-col-4  { grid-column: span 4; }
.goreel-form-col-5  { grid-column: span 5; }
.goreel-form-col-6  { grid-column: span 6; }
.goreel-form-col-7  { grid-column: span 7; }
.goreel-form-col-8  { grid-column: span 8; }
.goreel-form-col-9  { grid-column: span 9; }
.goreel-form-col-10 { grid-column: span 10; }
.goreel-form-col-11 { grid-column: span 11; }
.goreel-form-col-12 { grid-column: span 12; }

.goreel-form-label {
    font-size: 14px; font-weight: 600;
    margin-bottom: 6px; color: #191919;
}
.goreel-form-required { color: #e3342f; }
.goreel-form-field input,
.goreel-form-field textarea,
.goreel-form-field select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafb;
    transition: border-color .2s, background .2s;
}
.goreel-form-field input:focus,
.goreel-form-field textarea:focus,
.goreel-form-field select:focus {
    outline: none;
    border-color: var(--theme-color1, #f9b000);
    background: #fff;
}
.goreel-form-field textarea { resize: vertical; min-height: 130px; }
.goreel-form-field.has-error input,
.goreel-form-field.has-error textarea { border-color: #e3342f; }
.goreel-form-field-error { color: #e3342f; font-size: 13px; margin-top: 5px; }
.goreel-form-help { color: #9a9a9a; font-size: 13px; margin-top: 5px; }

.goreel-form-actions { margin-top: 22px; }
.goreel-form-submit {
    display: inline-block;
    background: var(--theme-color1, #f9b000);
    color: #191919;
    border: 0;
    padding: 15px 38px;
    border-radius: 6px;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.goreel-form-submit:hover { opacity: .9; transform: translateY(-2px); }

.goreel-form-success,
.goreel-form-error {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
}
.goreel-form-success { background: #e6f6ec; color: #1c7c43; border: 1px solid #b8e3c6; }
.goreel-form-error   { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6cb; }

.goreel-form-checkbox-label { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }

@media (max-width: 767px) {
    .goreel-form-field[class*="goreel-form-col-"] { grid-column: span 12; }
}

/* ---- Haber / Blog ---- */
.blog-list-section { padding: 80px 0; }
.blog-related { padding: 60px 0 80px; }
.blog-empty { text-align: center; padding: 60px 0; }
.blog-empty h3 { margin-bottom: 8px; }
.blog-empty p { color: #686a6f; }

.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, .14); }
.blog-card__cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f2f2f2;
}
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__cover img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__date {
    font-size: 13px; font-weight: 600;
    color: var(--theme-color1, #f9b000);
}
.blog-card__date i { margin-right: 5px; }
.blog-card__title { margin: 10px 0 10px; font-size: 21px; line-height: 1.35; }
.blog-card__title a { color: inherit; }
.blog-card__body p { color: #686a6f; margin-bottom: 16px; }
.blog-card__more { font-weight: 600; color: var(--theme-color1, #f9b000); }
.blog-card__more i { margin-left: 4px; }

.blog-details { padding: 80px 0; }
.blog-details__article { max-width: 860px; margin: 0 auto; }
.blog-details__meta { display: flex; gap: 20px; margin-bottom: 18px; }
.blog-details__meta span { font-size: 14px; color: #686a6f; }
.blog-details__meta i { margin-right: 6px; color: var(--theme-color1, #f9b000); }
.blog-details__cover { margin: 0 0 28px; border-radius: 10px; overflow: hidden; }
.blog-details__cover img { width: 100%; height: auto; display: block; }
.blog-details__lead { font-size: 19px; font-weight: 600; line-height: 1.6; margin-bottom: 22px; }
.blog-details__body { font-size: 16px; line-height: 1.8; color: #444; }
.blog-details__body p { margin-bottom: 16px; }
.blog-details__body img { max-width: 100%; height: auto; border-radius: 8px; margin: 10px 0; }
.blog-details__body h2,
.blog-details__body h3 { margin: 28px 0 12px; }

/* =====================================================================
   Header / Menü modernizasyonu — 7 öğeli yatay menü
   1080px altında hamburger menüye geçer.
   ===================================================================== */
/* Header — sade, modern gölge */
.main-header { box-shadow: 0 2px 18px rgba(0, 0, 0, .07) !important; }

/* Menü öğeleri */
.main-header .main-menu .navigation > li {
    margin-right: 12px !important;
    padding: 20px 0 !important;
}
.main-header .main-menu .navigation > li > a {
    position: relative;
    display: flex !important;
    align-items: center;
    height: 40px !important;
    line-height: 1 !important;
    padding: 0 8px !important;
    font-size: 17px;
    font-weight: 600;
    text-transform: none !important;        /* ALL-CAPS yerine doğal yazım */
    letter-spacing: .005em;
    color: #1f1f1f;
    border-radius: 8px;
    transition: color .2s ease;
}
/* Animasyonlu alt çizgi (hover + aktif sayfa) */
.main-header .main-menu .navigation > li > a::after {
    content: '';
    position: absolute;
    left: 8px; right: 8px; bottom: 6px;
    height: 2px; border-radius: 2px;
    background: var(--theme-color1, #f9b000);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .26s cubic-bezier(.4, 0, .2, 1);
}
.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a {
    color: var(--theme-color1, #f9b000);
}
.main-header .main-menu .navigation > li:hover > a::after,
.main-header .main-menu .navigation > li.current > a::after {
    transform: scaleX(1);
}

/* Açılır menü (dropdown) — modern kart */
.main-header .navigation li.dropdown > ul {
    min-width: 264px !important;
    padding: 8px !important;
    border: 1px solid rgba(0, 0, 0, .05) !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16) !important;
}
.main-header .navigation li.dropdown > ul > li { border-bottom: 0 !important; }
.main-header .navigation li.dropdown > ul > li > a {
    height: auto !important;
    line-height: 1.4 !important;
    padding: 9px 14px !important;
    font-size: 14px !important;
    text-transform: none !important;
    color: #3a3a3a !important;
    border-radius: 8px;
    transition: background .15s ease, color .15s ease;
}
.main-header .navigation li.dropdown > ul > li > a:hover {
    background: var(--theme-color1, #f9b000) !important;
    color: #1a1a1a !important;
}

/* "Bizi Arayın" CTA butonu */
.main-header .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 8px;
    background: var(--theme-color1, #f9b000);
    border-radius: 999px;
    box-shadow: 0 7px 20px rgba(249, 176, 0, .32);
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-header .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(249, 176, 0, .44);
}
.main-header .header-cta__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
}
.main-header .header-cta__num {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* 1080px altı: hamburger menü (7 öğeli nav daha dar ekrana sığmaz) */
@media (max-width: 1079px) {
    .main-header .nav.main-menu,
    .main-header .sticky-header .navbar-collapse { display: none !important; }
    .main-header .mobile-nav-toggler { display: block !important; }
}
/* 1240px altı: CTA numarası gizlenir — yuvarlak ikon-buton olarak kalır */
@media (max-width: 1239px) {
    .main-header .header-cta { padding: 0; background: none; box-shadow: none; }
    .main-header .header-cta:hover { transform: none; box-shadow: none; }
    .main-header .header-cta__num { display: none; }
    .main-header .header-cta__ico {
        width: 46px; height: 46px;
        background: var(--theme-color1, #f9b000);
        color: #1a1a1a;
        font-size: 16px;
    }
}
/* Mobilde CTA tamamen gizli — telefon mobil menüde mevcut */
@media (max-width: 575px) {
    .main-header .header-cta { display: none; }
}

/* ---- Ağırlık Hesaplama aracı ---- */
.calculator-section { padding: 80px 0; }
.calculator-wrap { max-width: 760px; margin: 0 auto; }
.calculator-intro { color: #686a6f; text-align: center; margin: 0 auto 26px; max-width: 560px; }

.hesapla {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.hesapla__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hesapla__dims {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}
.hesapla__field { display: flex; flex-direction: column; }
.hesapla__field label {
    font-size: 13px; font-weight: 600; color: #191919;
    margin-bottom: 6px;
}
.hesapla__field label em { color: #9a9a9a; font-style: normal; font-weight: 400; }
.hesapla__field select,
.hesapla__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafb;
    transition: border-color .2s, background .2s;
}
.hesapla__field select:focus,
.hesapla__field input:focus {
    outline: none;
    border-color: var(--theme-color1, #f9b000);
    background: #fff;
}

.hesapla__result {
    margin-top: 24px;
    background: #191919;
    color: #fff;
    border-radius: 8px;
    padding: 22px 26px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 14px;
}
.hesapla__result-label {
    font-size: 14px; letter-spacing: .04em;
    text-transform: uppercase; color: #b9bbbf;
}
.hesapla__result strong {
    font-size: 32px; font-weight: 700;
    color: var(--theme-color1, #f9b000);
    line-height: 1;
}
.hesapla__result small { width: 100%; color: #b9bbbf; font-size: 13px; }
.calc-noscript { color: #b71c1c; }

/* Açılır bilgi — varsayılan kapalı, sade ve göze batmayan */
.calc-help {
    margin-top: 18px;
    border-top: 1px solid #ececec;
}
.calc-help summary {
    list-style: none;
    cursor: pointer;
    padding: 13px 2px;
    font-size: 14px;
    font-weight: 600;
    color: #8a8d92;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calc-help summary::-webkit-details-marker { display: none; }
.calc-help summary::before {
    content: '';
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform .2s;
}
.calc-help[open] summary::before { transform: rotate(45deg); }
.calc-help summary:hover { color: var(--theme-color1, #f9b000); }
.calc-help__body { padding: 2px 2px 14px; }
.calc-help__body p { font-size: 13px; color: #686a6f; margin-bottom: 10px; }
.calc-formula {
    background: #fafafb; border: 1px dashed #d8d8d8; border-radius: 6px;
    padding: 9px 12px; font-size: 13px; font-weight: 600; color: #555;
}
.calc-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.calc-table td { padding: 7px 8px; font-size: 12.5px; border-bottom: 1px solid #f1f1f1; }
.calc-table td:first-child { font-weight: 600; color: #555; }
.calc-table td:last-child { color: #9a9a9a; font-family: Consolas, monospace; }
.calc-disclaimer {
    margin-top: 14px;
    font-size: 12px; line-height: 1.6;
    color: #9a9a9a; text-align: center;
}

@media (max-width: 575px) {
    .hesapla__grid,
    .hesapla__dims { grid-template-columns: 1fr; }
}

/* ---- Panelden eklenen header/footer kod blokları ---- */
.header-custom-block { width: 100%; }
.footer-custom-block {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #cfd2d6;
}
.footer-custom-block a { color: var(--theme-color1, #f9b000); }

/* =====================================================================
   Footer — modern, çok kolonlu
   ===================================================================== */
.main-footer { background: #1b1e23 !important; }
.main-footer .widgets-section { padding: 200px 0 54px !important; }
.main-footer .footer-column {     margin: 16px 0; }

/* Marka kolonu */
.footer-brand { padding-right: 26px; }
.footer-logo { margin-bottom: 22px; }
.footer-logo img {
    max-width: 190px; height: auto;
    filter: brightness(0) invert(1);   /* koyu logoyu footer için beyaza çevir */
}
.footer-about {
    color: #9a9ea4;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #cfd2d6;
    font-size: 15px;
    transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.footer-social a:hover {
    background: var(--theme-color1, #f9b000);
    border-color: var(--theme-color1, #f9b000);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Kolon başlıkları */
.footer-title {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 26px;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--theme-color1, #f9b000);
    border-radius: 3px;
}

/* Bağlantı listeleri */
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    color: #a7abb1;
    font-size: 14.5px;
    transition: color .2s ease, padding-left .2s ease;
}
.footer-links a::before {
    content: '\203A';
    margin-right: 8px;
    color: var(--theme-color1, #f9b000);
    font-weight: 700;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

/* İletişim listesi */
.footer-contact { padding: 0; margin: 0; list-style: none; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #a7abb1;
    font-size: 14.5px;
    line-height: 1.55;
}
.footer-contact li i {
    flex-shrink: 0;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(249, 176, 0, .12);
    color: var(--theme-color1, #f9b000);
    border-radius: 8px;
    font-size: 14px;
}
.footer-contact li a { color: #a7abb1; transition: color .2s; }
.footer-contact li a:hover { color: #fff; }

/* Alt bar */
.main-footer .footer-bottom {
    background: rgba(0, 0, 0, .25) !important;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 22px 0 !important;
}
.main-footer .footer-bottom .inner-container {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}
.main-footer .copyright-text { color: #8b8f95; font-size: 14px; }
.main-footer .footer-nav { padding: 0; margin: 0; list-style: none; }
.main-footer .footer-nav .goreel {
    color: #8b8f95; font-size: 13px; transition: color .2s;
}
.main-footer .footer-nav .goreel:hover { color: var(--theme-color1, #f9b000); }

@media (max-width: 991px) {
    .main-footer .widgets-section { padding-top: 160px !important; }
    .footer-brand { padding-right: 0; }
}
/* Mobil — minimal kurgu: ortalı marka, 2'li bağlantı kolonları, sıkı boşluk */
@media (max-width: 767px) {
    .main-footer .widgets-section { padding: 150px 0 26px !important; }
    .footer-brand {
        text-align: center;
        padding-bottom: 28px;
        margin-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .footer-logo img { max-width: 168px; }
    .footer-about { margin-bottom: 20px; }
    .footer-social { justify-content: center; }
    .footer-title { font-size: 16px; margin-bottom: 18px; padding-bottom: 10px; }
    .footer-column { margin-bottom: 22px; }
    .footer-links li { margin-bottom: 9px; }
}
@media (max-width: 575px) {
    .main-footer .footer-bottom .inner-container { flex-direction: column; text-align: center; }
}
