/*
 * Yavuz Kağıt – Marka Renk Paleti
 * Temanın custom.css değişkenlerini mavi tonlarla override eder.
 * Bu dosya her sayfada custom.css'ten SONRA yüklenir.
 */

:root {
    --primary-color           : #0c2a52;   /* koyu lacivert (başlık, buton fonu) */
    --secondary-color         : #eef4fc;   /* açık mavi arka plan */
    --bg-color                : #ffffff;
    --text-color              : #4b5b70;
    --accent-color            : #1d6fd8;   /* canlı mavi (CTA, vurgu) */
    --accent-secondary-color  : #0e4ea8;   /* hover mavi */
    --divider-color           : #0c2a521a;
    --dark-divider-color      : #ffffff1a;
    --white-color             : #ffffff;
}

/* ── Butonlar ────────────────────────────────────────────────────────────── */
.btn-default,
.btn-highlighted,
.newsletter-btn {
    background-color: var(--accent-color);
    border-color:     var(--accent-color);
    color:            #fff;
}
.btn-default:hover,
.btn-highlighted:hover {
    background-color: var(--accent-secondary-color);
    border-color:     var(--accent-secondary-color);
    color:            #fff;
}

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
    background-color: var(--primary-color);
}
.topbar-contact-info p,
.topbar-contact-info a,
.topbar-contact-info-list ul li a,
.topbar-social-links ul li a {
    color: #d0e4ff;
}
.topbar-contact-info a:hover,
.topbar-social-links ul li a:hover {
    color: #fff;
}

/* ── Header / Nav ────────────────────────────────────────────────────────── */
.main-menu ul li a {
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.header-sticky .navbar .nav-link:hover,
.header-sticky .navbar .nav-link.active,
.header-sticky .navbar .nav-item.active > .nav-link {
    color: var(--accent-color);
}

/* Sticky olduğunda (scroll sonrası) koyu arka plan */
header.main-header-stone .header-sticky.active,
header.main-header .header-sticky.active {
    background-color: var(--primary-color) !important;
}

/* ── Hero overlay rengi ──────────────────────────────────────────────────── */
.hero-stone::before {
    background: linear-gradient(180deg, transparent 50%, rgba(12, 42, 82, 0.85) 85%) !important;
}

/* ── Hero (stone variant) ────────────────────────────────────────────────── */
.hero-stone.dark-section,
.page-header.dark-section,
.dark-section {
    background-color: var(--primary-color);
}

/* ── Page header: fotoğraf yerine çizgi deseni ───────────────────────────── */
.page-header {
    background-image: url('../images/dark-section-bg-image-2.png');
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center center;
}

/* ── Accent rengi kullanan her yer ──────────────────────────────────────── */
.section-sub-title,
.readmore-btn,
.readmore-btn::before,
.service-item-btn .readmore-btn,
.page-category-list ul li a:hover,
.footer-links ul li a:hover,
.footer-links-stone ul li a:hover {
    color: var(--accent-color);
}

/* ── Footer — Çalışma Saatleri kutusu ───────────────────────────────────── */
.footer-working-hour-info-stone ul li {
    justify-content: flex-start;
    gap: 0;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-working-hour-info-stone ul li:last-child {
    border-bottom: none;
}
.wh-day {
    width: 80px;
    flex-shrink: 0;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.wh-time {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.wh-closed {
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
/* Buton metni beyaz */
.footer-working-hour-btn-stone a {
    color: #ffffff !important;
}

/* ── Footer stone ────────────────────────────────────────────────────────── */
.main-footer-stone.dark-section,
.main-footer.dark-section {
    background-color: var(--primary-color);
}

/* ════════════════════════════════════════════════════════════════════════
   HİZMETLER GRID BÖLÜMÜ — Tamamen yeni tasarım
   ════════════════════════════════════════════════════════════════════════ */

/* About bölümü: hafif soğuk gri-mavi zemin */
.about-us-stone {
    background-color: #f0f4f9;
}

/* Hizmetler bölümü: saf beyaz */
.svc-grid-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Başlık */
.svc-grid-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}
.svc-grid-header .section-sub-title {
    display: inline-block;
    margin-bottom: 12px;
}
.svc-grid-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
}
.svc-grid-header p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Kart grid */
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Tek kart */
.svc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.10);
}

/* İkon kutusu */
.svc-card-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.svc-card-icon i {
    font-size: 20px;
    color: #2563eb;
    line-height: 1;
}

/* Başlık */
.svc-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
}
.svc-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.svc-card-title a:hover {
    color: #2563eb;
}

/* Açıklama */
.svc-card-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Checklist */
.svc-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}
.svc-card-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}
.svc-card-list li svg {
    flex-shrink: 0;
    color: #2563eb;
}

/* Alt link */
.svc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    margin-top: auto;
    padding-top: 4px;
    transition: gap 0.2s ease;
}
.svc-card-link:hover {
    color: #1d4ed8;
    gap: 10px;
}

/* Alt buton */
.svc-grid-footer {
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 991px) {
    .svc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .svc-cards-grid {
        grid-template-columns: 1fr;
    }
    .svc-grid-section {
        padding: 70px 0;
    }
    .svc-card-list {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   NEDEN YAVUZ KAĞIT — Yeni tasarım
   ════════════════════════════════════════════════════════════════════════ */

.wcu-section {
    background: var(--primary-color);
    padding: 100px 0;
}

/* Başlık */
.wcu-header {
    max-width: 640px;
    margin: 0 auto 52px;
}
.wcu-header .section-title {
    text-align: center;
}

/* Grid */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Kart */
.wcu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 32px 26px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.wcu-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-4px);
}

/* İkon */
.wcu-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.wcu-card-icon i {
    font-size: 20px;
    color: #ffffff;
}

/* Metin */
.wcu-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}
.wcu-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.60);
    line-height: 1.70;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
    .wcu-section {
        padding: 70px 0;
    }
}

/* ── External Store Card (yatay, içerik altı) ────────────────────────────── */
.ext-store-card {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(120deg, var(--primary-color) 0%, #0d3d7a 100%);
    border-radius: 16px;
    padding: 28px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ext-store-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.ext-store-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.ext-store-card-left {
    flex-shrink: 0;
}

.ext-store-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.ext-store-card-body {
    flex: 1;
}

.ext-store-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ext-store-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ext-store-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0;
}

.ext-store-card-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ext-store-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.ext-store-card-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .ext-store-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }
    .ext-store-card-right {
        width: 100%;
    }
    .ext-store-card-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Contact circle (about section) ─────────────────────────────────────── */
.contact-us-circle-stone a {
    background-color: var(--accent-color);
    border-color: var(--bg-color) !important;
}

.contact-us-circle-stone a svg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: infiniterotate 20s linear infinite;
    display: block;
}

.contact-us-circle-stone a:hover svg {
    animation-play-state: paused;
}

@media (max-width: 1199px) {
    .contact-us-circle-stone a svg { width: 100px; height: 100px; }
}

@media (max-width: 767px) {
    .contact-us-circle-stone a svg { width: 70px; height: 70px; }
}

/* ── Scrolling ticker ────────────────────────────────────────────────────── */
.our-scrolling-ticker-stone {
    background-color: var(--accent-color);
}
.scrolling-content-stone span {
    color: #ffffff;
}

/* ── Sidebar CTA ─────────────────────────────────────────────────────────── */
.sidebar-cta-box {
    background-color: var(--primary-color);
}

/* ── Why choose us (dark) ────────────────────────────────────────────────── */
.why-choose-us-stone.dark-section {
    background-color: var(--primary-color);
}

/* ── Accordion (FAQ) ─────────────────────────────────────────────────────── */
.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color:            #fff;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 111, 216, 0.25);
}

/* ── Icon rengi ──────────────────────────────────────────────────────────── */
.feature-item-icon i,
.service-item-icon-stone i {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Mavi icon-box içindeki tüm SVG ikonları daima beyaz göster */
.icon-box img {
    filter: brightness(0) invert(1);
}

/* ── Preloader — favicon PNG için boyut düzeltmesi ───────────────────────── */
#loading-icon {
    width: 60px;
    height: 60px;
}

#loading-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ── Hakkımızda — tek görsel düzeni ─────────────────────────────────────── */
.about-us .about-us-image-box {
    display: block;
    position: relative;
    margin-right: 15px;
}

.about-us .about-us-image-box-1 {
    width: 100%;
}

.about-us .about-us-image-box-1 .about-us-image figure img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-us .about-us-experience {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* ── Hizmet Detay — Avantajlar Grid ─────────────────────────────────────── */
.svc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.svc-benefit-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f4f8ff;
    border: 1px solid #dae6f7;
    border-radius: 12px;
    padding: 16px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.svc-benefit-card:hover {
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(29, 111, 216, 0.10);
    transform: translateY(-2px);
}

.svc-benefit-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-benefit-icon i {
    color: #ffffff;
    font-size: 16px;
}

.svc-benefit-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.35;
}

@media (max-width: 575px) {
    .svc-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Alert (form) ────────────────────────────────────────────────────────── */
.alert-success { background-color: #d1fae5; border-color: #6ee7b7; color: #065f46; }
.alert-danger  { background-color: #fee2e2; border-color: #fca5a5; color: #991b1b; }
