/* main.css - Talya Beton Genel Stiller */

/* --- Değişkenler --- */
:root {
    --primary-color: #004B93;
    --primary-dark: #00386E;
    --accent-color: #F57C00;
    --dark-color: #1F2933;
    --text-color: #2F3640;
    --muted-color: #6B7280;
    --light-bg: #F5F7FA;
    --white-color: #FFFFFF;
    --border-color: #E5E7EB;
}

/* --- Temel Ayarlar --- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

section {
    padding: 60px 0;
}

/* 768px altı - section boşlukları */
@media (max-width: 767.98px) {
    section {
        padding: 40px 0;
    }
}

/* Tema Renk Yardımcıları */
body .text-primary { color: var(--primary-color); }
body .bg-primary { background-color: var(--primary-color); }
.btn-primary { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* --- SITE HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white-color);
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Header Container --- */
.header-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* --- Üst Utility Satırı --- */
.header-utility {
    height: 42px;
    min-height: 42px;
    background: var(--white-color);
    overflow: hidden;
    transition: height 0.35s ease, min-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
}

/* Scroll'da topbar gizleme */
.site-header.utility-hidden .header-utility {
    height: 0;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.utility-find-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted-color);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}

.utility-find-link:hover {
    color: var(--primary-color);
}

.utility-pills {
    display: flex;
    align-items: center;
    gap: 7px;
}

.utility-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-height: 30px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 30px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.utility-pill-primary {
    background-color: #004B93;
}

.utility-pill-primary:hover {
    background-color: #00386E;
    color: var(--white-color);
}

.utility-pill-secondary {
    background-color: #3D91CF;
}

.utility-pill-secondary:hover {
    background-color: #2C7AB5;
    color: var(--white-color);
}

.utility-pill-muted {
    background-color: #F57C00;
}

.utility-pill-muted:hover {
    background-color: #E06A00;
    color: var(--white-color);
}

/* --- Alt Ana Navbar --- */
.site-navbar {
    padding: 0;
    min-height: 62px;
}

/* --- Logo --- */
.site-logo,
.navbar-brand.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-decoration: none;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

/* --- Mobil Sağ Aksiyonlar --- */
.mobile-header-actions {
    flex-shrink: 0;
}

/* --- Ana Menü --- */
.main-menu {
    gap: 18px;
}

.main-menu .nav-link {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--muted-color);
    padding: 0;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
    line-height: 62px;
    text-transform: uppercase;
}

.main-menu .nav-link:hover,
.main-menu .nav-item.active .nav-link {
    color: var(--primary-color);
}

.main-menu .nav-link:focus-visible,
.site-navbar .dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.main-menu .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.35em;
    font-size: 11px;
}

/* --- Premium Dropdown --- */
.dropdown-premium {
    min-width: 310px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    padding: 12px;
    margin-top: 6px;
    background: var(--white-color);
}

.dropdown-premium .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    transition: background-color 0.2s ease;
    white-space: normal;
}

.dropdown-premium .dropdown-item i.bi {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.dropdown-premium .dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-premium .dropdown-item-title {
    font-weight: 600;
    color: var(--dark-color);
}

.dropdown-premium .dropdown-item-desc {
    font-size: 12px;
    color: var(--muted-color);
    line-height: 1.3;
    margin-top: 1px;
}

.dropdown-premium .dropdown-item:hover {
    background-color: #F0F7FF;
}

.dropdown-premium .dropdown-item:hover .dropdown-item-title {
    color: var(--primary-color);
}

.dropdown-premium .dropdown-divider {
    margin: 8px 0;
    opacity: 0.4;
}

/* --- Masaüstü Dropdown Hover (992px ve üzeri) --- */
@media (min-width: 992px) {
    .site-navbar .nav-item.dropdown {
        position: relative;
    }

    .site-navbar .nav-item.dropdown > .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(8px);
        transition: visibility 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
        margin-top: 0;
    }

    .site-navbar .nav-item.dropdown:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .site-navbar .dropdown-toggle::after {
        transition: transform 0.25s ease;
    }
}

/* --- Teklif Al Butonu --- */
.btn-header-quote {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    height: 40px;
    min-width: 112px;
    padding: 0 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.btn-header-quote:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* --- Mobil Utility Butonları (Sadece Mobil Menüde) --- */
.mobile-utility-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
}

.mobile-utility-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--white-color);
    transition: background-color 0.2s ease;
}

.mobile-utility-pill-primary {
    background-color: #004B93;
}

.mobile-utility-pill-primary:hover {
    background-color: #00386E;
    color: var(--white-color);
}

.mobile-utility-pill-secondary {
    background-color: #3D91CF;
}

.mobile-utility-pill-secondary:hover {
    background-color: #2C7AB5;
    color: var(--white-color);
}

.mobile-utility-pill-muted {
    background-color: #F57C00;
}

.mobile-utility-pill-muted:hover {
    background-color: #E06A00;
    color: var(--white-color);
}

/* --- Header Responsive --- */
@media (max-width: 991.98px) {
    .site-navbar {
        min-height: 64px;
    }

    .site-logo-img {
        height: 42px;
        max-width: 170px;
    }

    .navbar-collapse {
        background: var(--white-color);
        padding: 16px 0;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .main-menu {
        gap: 0;
    }

    .main-menu .nav-link {
        line-height: 1.4;
        padding: 14px 0;
        font-size: 15px;
        border-bottom: 1px solid var(--border-color);
        white-space: normal;
        letter-spacing: normal;
    }

    .main-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .main-menu .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-premium {
        width: 100%;
        min-width: unset;
        border: none;
        box-shadow: none;
        border-radius: 8px;
        background-color: var(--light-bg);
        padding: 8px;
        margin-top: 4px;
    }

    .dropdown-premium .dropdown-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .dropdown-premium .dropdown-item i.bi {
        font-size: 18px;
        width: 24px;
    }

    .dropdown-premium .dropdown-divider {
        display: none;
    }

    .btn-header-quote {
        width: 100%;
        margin-top: 16px;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .site-logo-img {
        height: 38px;
        max-width: 154px;
    }
}

/* --- Sağ Alt Floating Butonlar --- */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white-color);
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: var(--white-color);
}

.floating-top-btn {
    background-color: #061B33;
}

.floating-top-btn:hover {
    background-color: #0D2B4E;
}

.floating-whatsapp-btn {
    background-color: #25D366;
}

.floating-whatsapp-btn:hover {
    background-color: #1DA851;
}

/* --- WhatsApp Popup --- */
.whatsapp-popup {
    position: fixed;
    right: 86px;
    bottom: 22px;
    width: 360px;
    background: var(--white-color);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    padding: 14px 16px;
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(12px);
}

.whatsapp-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--muted-color);
    transition: background-color 0.2s ease;
}

.whatsapp-popup-close:hover {
    background-color: var(--border-color);
}

.popup-eyebrow {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 3px;
}

.popup-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 6px;
    line-height: 1.2;
    padding-right: 28px;
}

.popup-text {
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted-color);
    margin: 0 0 10px;
    max-width: 290px;
}

.popup-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.popup-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-height: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background-color: #25D366;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.popup-whatsapp-link:hover {
    background-color: #1DA851;
    color: var(--white-color);
}

.popup-whatsapp-link i {
    font-size: 16px;
}

.popup-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 34px;
    height: 34px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white-color);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.popup-contact-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* --- Floating ve Popup Responsive --- */
@media (max-width: 767.98px) {
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .floating-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .whatsapp-popup {
        left: 14px;
        right: 14px;
        bottom: 86px;
        width: auto;
        padding: 14px;
        border-radius: 14px;
    }

    .popup-title {
        font-size: 15px;
    }

    .whatsapp-popup p {
        font-size: 12px;
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-popup {
        left: 14px;
        right: 14px;
        bottom: 86px;
        width: auto;
        padding: 14px;
        border-radius: 14px;
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-title {
        font-size: 15px;
    }

    .whatsapp-popup p {
        font-size: 12px;
        max-width: none;
    }
}

/* --- Ana Sayfa Görsel Hero Slider --- */
.hero-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.home-visual-hero {
    padding: 26px 0 0;
    background: #FFFFFF;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 560px;
    max-height: calc(100vh - 190px);
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 0;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Slider Kontrol Okları */
.hero-carousel-control {
    width: 54px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
}

.hero-carousel-prev {
    left: 18px;
}

.hero-carousel-next {
    right: 18px;
}

.hero-control-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: #004B93;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
    transition: all 0.25s ease;
}

.hero-carousel-control:hover .hero-control-icon {
    background: #004B93;
    color: #FFFFFF;
    transform: scale(1.04);
}

/* Slider Alt Göstergeler */
.hero-carousel .carousel-indicators {
    bottom: 18px;
    gap: 6px;
    margin: 0;
}

.hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background: #004B93;
    transform: scale(1.2);
}

/* --- Hero Slider Responsive --- */
@media (max-width: 1199px) {
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 500px;
    }
}

@media (max-width: 991.98px) {
    .home-visual-hero {
        padding-top: 20px;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 440px;
    }
}

@media (max-width: 767.98px) {
    .home-visual-hero {
        padding-top: 16px;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 420px;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 360px;
    }

    .hero-slide-image {
        object-position: center center;
    }

    .hero-carousel-control {
        width: 44px;
    }

    .hero-carousel-prev {
        left: 8px;
    }

    .hero-carousel-next {
        right: 8px;
    }

    .hero-control-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .hero-carousel .carousel-indicators {
        bottom: 12px;
    }

    .hero-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

/* --- Ana Sayfa Üretim ve Hizmet Alanlarımız --- */
.home-services-showcase {
    padding: 72px 0 80px;
    background: #FFFFFF;
}

.services-showcase-header {
    margin-bottom: 34px;
    max-width: 760px;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #004B93;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1F2933;
    line-height: 1.15;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-showcase-card {
    position: relative;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    background: #F5F7FA;
}

.service-showcase-card:hover {
    color: #FFFFFF;
}

.service-showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 27, 51, 0.05) 20%, rgba(6, 27, 51, 0.72) 100%);
    transition: background 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.service-showcase-overlay {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    transform: translateY(34px);
    transition: transform 0.35s ease;
}

.service-showcase-overlay h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.service-showcase-overlay p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-showcase-link i.bi {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-showcase-card:hover .service-showcase-link i.bi {
    transform: translateX(4px);
}

.service-showcase-card:hover .service-showcase-img {
    transform: scale(1.06);
}

.service-showcase-card:hover::after {
    background: linear-gradient(180deg, rgba(6, 27, 51, 0.10) 10%, rgba(0, 75, 147, 0.82) 100%);
}

.service-showcase-card:hover .service-showcase-overlay {
    transform: translateY(0);
}

.service-showcase-card:hover .service-showcase-overlay p,
.service-showcase-card:hover .service-showcase-link {
    opacity: 1;
}

/* --- Hizmet Kartları Responsive --- */
@media (max-width: 1199.98px) {
    .services-showcase-grid {
        gap: 18px;
    }

    .service-showcase-card {
        min-height: 400px;
    }
}

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

    .service-showcase-card {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .home-services-showcase {
        padding: 52px 0 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-showcase-card {
        min-height: 320px;
    }

    .service-showcase-overlay {
        transform: translateY(0);
    }

    .service-showcase-overlay p,
    .service-showcase-link {
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 28px;
    }

    .service-showcase-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .service-showcase-overlay h3 {
        font-size: 22px;
    }
}

/* --- Ana Sayfa Projenize Uygun Malzemeyi Bulun --- */
.material-finder {
    padding: 78px 0 86px;
    background: #FFFFFF;
}

.material-finder-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.material-finder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.material-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 20px;
    min-height: 210px;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    text-decoration: none;
    color: #1F2933;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.material-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 75, 147, 0.28);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.material-card-media {
    width: 100%;
    height: 100%;
    min-height: 178px;
    border-radius: 16px;
    overflow: hidden;
    background: #E5E7EB;
}

.material-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.material-card:hover .material-card-media img {
    transform: scale(1.06);
}

.material-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.material-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1F2933;
}

.material-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 14px;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.material-tags span {
    font-size: 11px;
    font-weight: 700;
    color: #004B93;
    background: #F0F7FF;
    padding: 6px 9px;
    border-radius: 999px;
}

.material-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #004B93;
}

.material-card-link i {
    transition: transform 0.25s ease;
}

.material-card:hover .material-card-link i {
    transform: translateX(4px);
}

/* --- Makina Parkuru Yönetilebilir Kart Grid --- */
.machine-card-section {
    margin-top: 56px;
}

.machine-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.machine-park-card {
    border: 1px solid #E5EAF1;
    border-radius: 18px;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.machine-park-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10);
}

.machine-park-card-media {
    aspect-ratio: 1 / 1;
    background: #E5EAF1;
    overflow: hidden;
}

.machine-park-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.machine-park-card-body {
    padding: 18px;
}

.machine-park-card-body h3 {
    margin: 0 0 8px;
    color: #101827;
    font-size: 20px;
    font-weight: 850;
}

.machine-park-card-body p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

/* --- İletişim Formu --- */
.contact-form-card {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid #E5EAF1;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.contact-form-head {
    margin-bottom: 20px;
}

.contact-form-head h2 {
    margin: 6px 0 8px;
    color: #101827;
    font-size: 28px;
    font-weight: 850;
}

.contact-form-head p {
    margin: 0;
    color: #667085;
}

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

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field span {
    color: #253044;
    font-size: 13px;
    font-weight: 800;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #E5EAF1;
    border-radius: 12px;
    padding: 11px 13px;
    color: #253044;
    font: inherit;
    outline: none;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(0, 75, 147, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 75, 147, 0.08);
}

.contact-field-full,
.contact-submit-btn {
    grid-column: 1 / -1;
}

.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-submit-btn {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    background: #004B93;
    color: #FFFFFF;
    font-weight: 850;
}

.public-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #EEF7FF;
    color: #004B93;
    font-size: 14px;
    font-weight: 800;
}

.public-alert-error {
    background: #FFF1F1;
    color: #B42318;
}

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

@media (max-width: 575.98px) {
    .machine-card-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Material Finder Responsive --- */
@media (max-width: 1199.98px) {
    .material-card {
        grid-template-columns: 160px 1fr;
    }
}

@media (max-width: 991.98px) {
    .material-finder-grid {
        grid-template-columns: 1fr;
    }

    .material-card {
        grid-template-columns: 190px 1fr;
    }
}

@media (max-width: 767.98px) {
    .material-finder {
        padding: 58px 0 64px;
    }

    .material-finder-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .material-finder-grid::-webkit-scrollbar {
        height: 6px;
    }

    .material-finder-grid::-webkit-scrollbar-thumb {
        background: rgba(0, 75, 147, 0.25);
        border-radius: 999px;
    }

    .material-card {
        flex: 0 0 86%;
        scroll-snap-align: start;
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 14px;
    }

    .material-card-media {
        height: 210px;
        min-height: 210px;
    }

    .material-card-content {
        padding: 6px 4px 4px;
    }

    .material-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .material-card {
        flex-basis: 88%;
    }

    .material-card-media {
        height: 185px;
        min-height: 185px;
    }

    .material-card h3 {
        font-size: 19px;
    }
}

/* --- Ana Sayfa Makina Parkuru Önizleme --- */
.machine-preview {
    padding: 78px 0 86px;
    background: #FFFFFF;
}

.machine-preview-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: center;
}

.machine-preview-content {
    max-width: 520px;
}

.machine-feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 30px;
    display: grid;
    gap: 14px;
}

.machine-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4B5563;
    line-height: 1.55;
}

.machine-feature-list i {
    color: #004B93;
    font-size: 18px;
    margin-top: 2px;
}

.machine-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    background: #004B93;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.machine-preview-btn:hover {
    background: #003B75;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.machine-preview-btn i {
    transition: transform 0.25s ease;
}

.machine-preview-btn:hover i {
    transform: translateX(4px);
}

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

.machine-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #1F2933;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.machine-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 75, 147, 0.28);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
}

.machine-card-media {
    height: 190px;
    overflow: hidden;
    background: #F5F7FA;
}

.machine-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.machine-card:hover .machine-card-media img {
    transform: scale(1.06);
}

.machine-card-body {
    padding: 18px 18px 20px;
}

.machine-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1F2933;
    margin-bottom: 8px;
}

.machine-card-body p {
    font-size: 13px;
    line-height: 1.55;
    color: #6B7280;
    margin-bottom: 0;
}

/* --- Makina Parkuru Responsive --- */
@media (max-width: 1199px) {
    .machine-preview-layout {
        gap: 34px;
    }

    .machine-card-media {
        height: 170px;
    }
}

@media (max-width: 991px) {
    .machine-preview-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .machine-preview-content {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .machine-preview {
        padding: 58px 0 64px;
    }

    .machine-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .machine-card {
        display: grid;
        grid-template-columns: 150px 1fr;
    }

    .machine-card-media {
        height: 100%;
        min-height: 150px;
    }

    .machine-card-body {
        padding: 16px;
    }

    .machine-card-body h3 {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .machine-card {
        grid-template-columns: 1fr;
    }

    .machine-card-media {
        height: 210px;
        min-height: 210px;
    }

    .machine-preview-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Ana Sayfa Neden Talya Beton --- */
.why-talya {
  padding: 76px 0 84px;
  background: #FFFFFF;
}

.why-talya-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.why-talya-timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 0;
}

.why-talya-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 75, 147, 0), rgba(0, 75, 147, 0.32), rgba(0, 75, 147, 0));
  transform: translateX(-50%);
}

.why-talya-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  gap: 0;
  min-height: 250px;
  margin-bottom: 34px;
}

.why-talya-step:last-child {
  margin-bottom: 0;
}

.why-talya-node {
  grid-column: 2;
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 75, 147, 0.18);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  color: #004B93;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.why-talya-visual {
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  background: #F5F7FA;
}

.why-talya-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why-talya-content {
  position: relative;
  max-width: 430px;
  padding: 26px 28px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-talya-step-left .why-talya-visual {
  grid-column: 1;
  justify-self: end;
  width: 430px;
}

.why-talya-step-left .why-talya-content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.why-talya-step-right .why-talya-content {
  grid-column: 1;
  justify-self: end;
  text-align: left;
}

.why-talya-step-right .why-talya-visual {
  grid-column: 3;
  justify-self: start;
  width: 430px;
}

.why-talya-step:hover .why-talya-content {
  transform: translateY(-5px);
  border-color: rgba(0, 75, 147, 0.26);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
}

.why-talya-step:hover .why-talya-node {
  background: #004B93;
  color: #FFFFFF;
  border-color: #004B93;
  transform: scale(1.07);
}

.why-talya-step:hover .why-talya-visual img {
  transform: scale(1.06);
}

.why-talya-number {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  color: #004B93;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.why-talya-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.why-talya-mini-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background: rgba(0, 75, 147, 0.08);
  color: #004B93;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.why-talya-content h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: #1F2933;
  margin-bottom: 0;
}

.why-talya-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .why-talya-timeline {
    max-width: 1000px;
  }

  .why-talya-step-left .why-talya-visual,
  .why-talya-step-right .why-talya-visual {
    width: 390px;
  }

  .why-talya-content {
    max-width: 390px;
  }
}

@media (max-width: 991px) {
  .why-talya-step {
    grid-template-columns: 1fr 64px 1fr;
    min-height: 220px;
  }

  .why-talya-step-left .why-talya-visual,
  .why-talya-step-right .why-talya-visual {
    width: 320px;
  }

  .why-talya-visual {
    height: 190px;
  }

  .why-talya-content {
    max-width: 320px;
    padding: 22px;
  }

  .why-talya-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .why-talya {
    padding: 48px 0 54px;
  }

  .why-talya-head {
    margin-bottom: 28px;
  }

  .why-talya-timeline {
    position: relative;
    padding-left: 0;
  }

  .why-talya-line {
    display: block;
    left: 20px;
    top: 0;
    bottom: 0;
  }

  .why-talya-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "node visual"
      "node content";
    column-gap: 14px;
    align-items: start;
    min-height: auto;
    margin-bottom: 18px;
  }

  .why-talya-step:last-child {
    margin-bottom: 0;
  }

  .why-talya-node {
    display: inline-flex;
    grid-area: node;
    justify-self: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
    margin: 12px 0 0;
    z-index: 3;
  }

  .why-talya-visual {
    grid-area: visual;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    height: 150px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  }

  .why-talya-content {
    grid-area: content;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
    padding: 16px;
    border-radius: 0 0 16px 16px;
    border-top: 0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
  }

  .why-talya-step-left .why-talya-visual,
  .why-talya-step-right .why-talya-visual,
  .why-talya-step-left .why-talya-content,
  .why-talya-step-right .why-talya-content {
    grid-column: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
  }

  .why-talya-number {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .why-talya-title-row {
    gap: 9px;
    margin-bottom: 8px;
  }

  .why-talya-mini-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 9px;
    font-size: 14px;
  }

  .why-talya-content h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .why-talya-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .why-talya-step:hover .why-talya-content {
    transform: none;
  }

  .why-talya-step:hover .why-talya-visual img {
    transform: scale(1.04);
  }
}

@media (max-width: 575px) {
  .why-talya {
    padding: 42px 0 48px;
  }

  .why-talya-head {
    margin-bottom: 24px;
  }

  .why-talya-line {
    left: 18px;
  }

  .why-talya-step {
    grid-template-columns: 36px 1fr;
    grid-template-areas:
      "node visual"
      "node content";
    column-gap: 12px;
    margin-bottom: 16px;
  }

  .why-talya-node {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 12px;
    margin-top: 10px;
  }

  .why-talya-visual {
    height: 135px;
    border-radius: 14px 14px 0 0;
  }

  .why-talya-content {
    padding: 14px;
    border-radius: 0 0 14px 14px;
  }

  .why-talya-mini-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 13px;
  }

  .why-talya-content h3 {
    font-size: 15px;
  }

  .why-talya-content p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* --- Ana Sayfa Galeri Önizleme --- */
.home-projects-preview {
  padding: 78px 0 86px;
  background: #FFFFFF;
}

.home-projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.home-projects-head > div {
  max-width: 790px;
}

.home-projects-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  background: #004B93;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-projects-link:hover {
  background: #003B75;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.home-projects-link i {
  transition: transform 0.25s ease;
}

.home-projects-link:hover i {
  transform: translateX(4px);
}

.home-projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-project-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 18px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: #FFFFFF;
  color: #1F2933;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 75, 147, 0.24);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.10);
}

.home-project-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #F0F7FF;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
}

.home-project-card h3 {
  margin: 0 0 9px;
  color: #1F2933;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 900;
}

.home-project-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.home-project-card > i {
  color: #004B93;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.home-project-card:hover > i {
  transform: translate(3px, -3px);
}

.home-references-preview {
  padding: 78px 0 86px;
  background: #FFFFFF;
}

.home-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-reference-card {
  display: block;
  min-height: 250px;
  padding: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: #FFFFFF;
  color: #1F2933;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-reference-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 75, 147, 0.24);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.10);
}

.home-reference-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 24px;
}

.home-reference-card h3 {
  margin: 0 0 12px;
  color: #1F2933;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.home-reference-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.home-reference-bottom {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* Ana Sayfa Projeler ve Referanslar Responsive */
@media (max-width: 991px) {
  .home-projects-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-projects-list,
  .home-reference-grid {
    grid-template-columns: 1fr;
  }

  .home-reference-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .home-projects-preview,
  .home-references-preview {
    padding: 58px 0 64px;
  }

  .home-project-card {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 22px;
  }

  .home-project-number {
    grid-column: 1 / -1;
  }

  .home-projects-link {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .home-projects-preview,
  .home-references-preview {
    padding: 48px 0 54px;
  }

  .home-project-card,
  .home-reference-card {
    border-radius: 16px;
    padding: 20px;
  }

  .home-project-card h3,
  .home-reference-card h3 {
    font-size: 18px;
  }
}

.home-gallery-preview {
  padding: 78px 0 86px;
  background: #FFFFFF;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 230px 230px 230px;
  gap: 18px;
  grid-template-areas:
    "large large stock machine"
    "large large delivery crushing"
    "site site site site";
}

.gallery-preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #F5F7FA;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
  text-decoration: none;
}

.gallery-preview-card-1 { grid-area: large; }
.gallery-preview-card-2 { grid-area: stock; }
.gallery-preview-card-3 { grid-area: machine; }
.gallery-preview-card-4 { grid-area: delivery; }
.gallery-preview-card-5 { grid-area: crushing; }
.gallery-preview-card-6 { grid-area: site; }

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.50));
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.gallery-preview-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.gallery-preview-card:hover img {
  transform: scale(1.07);
}

.gallery-preview-card:hover::after {
  opacity: 1;
}

.gallery-preview-bottom {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.gallery-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: #004B93;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-preview-link:hover {
  background: #003B75;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.gallery-preview-link i {
  transition: transform 0.25s ease;
}

.gallery-preview-link:hover i {
  transform: translateX(4px);
}

.seo-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.seo-pagination a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #FFFFFF;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.seo-pagination a.active,
.seo-pagination a:hover {
  background: #004B93;
  border-color: #004B93;
  color: #FFFFFF;
}

.rich-content {
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.9;
}

.rich-content p {
  margin: 0 0 16px;
}

.rich-content ul,
.rich-content ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

/* Galeri Önizleme Responsive */
@media (max-width: 1199px) {
  .gallery-preview-grid {
    grid-template-rows: 190px 190px 190px;
  }
}

@media (max-width: 991px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px 220px;
    grid-template-areas:
      "large large"
      "stock machine"
      "delivery crushing"
      "site site";
  }
}

@media (max-width: 767px) {
  .home-gallery-preview {
    padding: 58px 0 64px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 16px;
  }

  .gallery-preview-card,
  .gallery-preview-card-1,
  .gallery-preview-card-2,
  .gallery-preview-card-3,
  .gallery-preview-card-4,
  .gallery-preview-card-5,
  .gallery-preview-card-6 {
    grid-area: auto;
    height: 230px;
  }

  .gallery-preview-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .home-gallery-preview {
    padding: 48px 0 54px;
  }

  .gallery-preview-card,
  .gallery-preview-card-1,
  .gallery-preview-card-2,
  .gallery-preview-card-3,
  .gallery-preview-card-4,
  .gallery-preview-card-5,
  .gallery-preview-card-6 {
    height: 200px;
    border-radius: 16px;
  }

  .gallery-preview-card span {
    left: 15px;
    bottom: 14px;
    font-size: 14px;
  }
}

/* Galeri Lightbox Modal */
.gallery-lightbox-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #000;
}

.gallery-lightbox-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.92);
  opacity: 1;
}

.gallery-lightbox-caption {
  padding: 14px 18px;
  background: #FFFFFF;
  color: #1F2933;
  font-size: 15px;
  font-weight: 800;
}

/* Tıklanabilir galeri önizleme imleci */
[data-gallery-preview] {
  cursor: zoom-in;
}

/* --- Ana Sayfa Rakamlarla Talya Beton (Güven Şeridi) --- */
.home-stats-strip {
    padding: 20px 0 50px;
    background: #FFFFFF;
}

.stats-strip {
    padding: 18px 22px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.stats-strip-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stats-strip-item {
    min-height: 112px;
    padding: 18px 18px;
    background: transparent;
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.stats-strip-item + .stats-strip-item {
    border-left: 1px solid #EEF1F5;
}

.stats-strip-item:hover {
    transform: translateY(-4px);
    background: rgba(0, 75, 147, 0.055);
}

.stats-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(0, 75, 147, 0.08);
    color: #004B93;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.stats-icon i {
    font-size: 21px;
    line-height: 1;
}

.stats-strip-item:hover .stats-icon {
    transform: scale(1.06);
    background: #004B93;
    color: #FFFFFF;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.stats-value {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-size: 44px;
    line-height: 0.95;
    font-weight: 900;
    color: #004B93;
    letter-spacing: -0.055em;
    margin-bottom: 8px;
    white-space: nowrap;
    font-style: normal;
    transition: transform 0.25s ease, color 0.25s ease;
}

.stats-strip-item:hover .stats-value {
    transform: scale(1.03);
    color: #003B75;
}

.stats-value .counter {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
}

.stats-value em {
    font-style: normal;
    font-size: 0.58em;
    line-height: 1;
    font-weight: 900;
    color: inherit;
    letter-spacing: -0.02em;
    margin-left: 2px;
}

.stats-content > span {
    font-size: 13px;
    font-weight: 800;
    color: #6B7280;
    line-height: 1.2;
}

/* --- Home Stats Strip Responsive --- */
@media (max-width: 1199.98px) {
    .stats-strip-item {
        gap: 10px;
        padding: 16px 12px;
    }

    .stats-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .stats-value {
        font-size: 38px;
    }
}

@media (max-width: 991.98px) {
    .stats-strip-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stats-strip-item {
        border: 1px solid #EEF1F5;
        border-radius: 14px;
    }

    .stats-strip-item + .stats-strip-item {
        border-left: 1px solid #EEF1F5;
    }
}

@media (max-width: 767.98px) {
    .home-stats-strip {
        padding: 14px 0 32px;
    }

    .stats-strip {
        padding: 12px;
        border-radius: 16px;
    }

    .stats-strip-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
    }

    .stats-strip-item {
        min-height: 92px;
        padding: 10px;
        border: 1px solid #EEF1F5;
        border-radius: 13px;
        gap: 8px;
        justify-content: center;
    }

    .stats-strip-item + .stats-strip-item {
        border-left: 1px solid #EEF1F5;
    }

    .stats-strip-item:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 5px);
        width: 100%;
        justify-self: center;
    }

    .stats-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 10px;
    }

    .stats-icon i {
        font-size: 17px;
    }

    .stats-value {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .stats-content > span {
        font-size: 11px;
        line-height: 1.15;
    }
}

@media (max-width: 575.98px) {
    .home-stats-strip {
        padding: 12px 0 30px;
    }

    .stats-strip {
        padding: 10px;
    }

    .stats-strip-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .stats-strip-item {
        min-height: 88px;
        padding: 9px;
    }

    .stats-value {
        font-size: 30px;
    }

    .stats-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .stats-icon i {
        font-size: 16px;
    }

    .stats-content > span {
        font-size: 10.5px;
    }
}

/* --- Ana Sayfa SSS Bölümü --- */
.home-faq {
  padding: 78px 0 86px;
  background: #FFFFFF;
}

.section-head-center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: center;
}

.home-faq-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.075);
}

.home-faq-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.home-faq-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: #F5F7FA;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
}

.home-faq-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #6B7280;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq-tab:hover {
  color: #004B93;
}

.home-faq-tab.active {
  background: #004B93;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(0, 75, 147, 0.18);
}

.home-faq-tab-content {
  max-width: 100%;
  margin: 0 auto;
}

.home-faq-accordion {
  display: grid;
  gap: 12px;
}

.home-faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 15px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq-item:has(.home-faq-button:not(.collapsed)) {
  border-color: rgba(0, 75, 147, 0.22);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.home-faq-button {
  min-height: 60px;
  padding: 17px 20px;
  background: #FFFFFF;
  color: #1F2933;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: none;
}

.home-faq-button:not(.collapsed) {
  background: rgba(0, 75, 147, 0.055);
  color: #004B93;
  box-shadow: none;
}

.home-faq-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.home-faq-body {
  padding: 0 20px 18px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.65;
}

/* Ana Sayfa SSS Bölümü Responsive */
@media (max-width: 1199px) {
  .home-faq-panel {
    max-width: 900px;
  }
}

@media (max-width: 991px) {
  .home-faq-panel {
    max-width: 100%;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .home-faq {
    padding: 58px 0 64px;
  }

  .section-head-center {
    margin-bottom: 26px;
  }

  .home-faq-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .home-faq-tabs-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .home-faq-tabs {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .home-faq-tab {
    white-space: nowrap;
    min-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }

  .home-faq-accordion {
    gap: 10px;
  }

  .home-faq-button {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 14px;
  }

  .home-faq-body {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .home-faq {
    padding: 48px 0 54px;
  }

  .home-faq-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .home-faq-tabs {
    padding: 6px;
    border-radius: 12px;
  }

  .home-faq-tab {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11.5px;
  }

  .home-faq-item {
    border-radius: 13px;
  }

  .home-faq-button {
    min-height: 52px;
    padding: 14px 15px;
    font-size: 13.5px;
  }

  .home-faq-body {
    padding: 0 15px 15px;
    font-size: 12.5px;
  }
}

/* --- Ana Sayfa Son CTA Bölümü --- */
.home-final-cta {
  padding: 76px 0 90px;
  background: #FFFFFF;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #003B75 0%, #004B93 52%, #0A66B2 100%);
  box-shadow: 0 24px 70px rgba(0, 75, 147, 0.22);
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-content,
.final-cta-points {
  position: relative;
  z-index: 2;
}

.final-cta-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.final-cta-content h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.final-cta-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.final-cta-primary {
  background: #FFFFFF;
  color: #004B93;
}

.final-cta-primary:hover {
  color: #004B93;
  transform: translateY(-2px);
}

.final-cta-primary i {
  margin-left: 9px;
  transition: transform 0.25s ease;
}

.final-cta-primary:hover i {
  transform: translateX(4px);
}

.final-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.final-cta-points {
  display: grid;
  gap: 14px;
}

.final-cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}

.final-cta-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.final-cta-point span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* Ana Sayfa Son CTA Bölümü Responsive */
@media (max-width: 1199px) {
  .final-cta-panel {
    padding: 42px;
    gap: 32px;
  }

  .final-cta-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .final-cta-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta-point {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .home-final-cta {
    padding: 58px 0 70px;
  }

  .final-cta-panel {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .final-cta-content h2 {
    font-size: 30px;
  }

  .final-cta-content p {
    font-size: 14px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-primary,
  .final-cta-secondary {
    width: 100%;
  }

  .final-cta-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .home-final-cta {
    padding: 48px 0 58px;
  }

  .final-cta-panel {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .final-cta-content h2 {
    font-size: 26px;
  }

  .final-cta-eyebrow {
    font-size: 11.5px;
  }

  .final-cta-point {
    min-height: 60px;
    padding: 14px;
  }

  .final-cta-point span {
    font-size: 13px;
  }
}

/* --- Kurumsal Alt Sayfa --- */
.inner-page {
  background: #FFFFFF;
}

.inner-hero {
  padding: 72px 0 46px;
  background: #FFFFFF;
}

.inner-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 94px 0;
  background-image:
    linear-gradient(90deg, rgba(7, 27, 51, 0.88) 0%, rgba(7, 27, 51, 0.70) 46%, rgba(7, 27, 51, 0.28) 100%),
    url("../img/hero/hero-01.jpg");
  background-size: cover;
  background-position: center center;
  color: #FFFFFF;
}

.inner-hero-content {
  max-width: 860px;
}

.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-title {
  margin: 0;
  color: #1F2933;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.inner-description {
  max-width: 760px;
  margin: 18px 0 0;
  color: #6B7280;
  font-size: 17px;
  line-height: 1.75;
}

.inner-hero-visual .inner-breadcrumb {
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero-visual .inner-title {
  color: #FFFFFF;
  max-width: 780px;
}

.inner-hero-visual .inner-description {
  color: rgba(255, 255, 255, 0.82);
  max-width: 820px;
}

.corporate-content-section {
  padding: 86px 0 90px;
}

.corporate-content {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 58px;
  align-items: center;
}

.corporate-text h2 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #1F2933;
  font-size: 36px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.corporate-text p {
  margin: 0 0 16px;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.9;
}

.corporate-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10);
}

.corporate-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.corporate-visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(7, 27, 51, 0.82);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.corporate-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
}

.corporate-value-card {
  padding: 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.corporate-value-card + .corporate-value-card {
  border-left: 1px solid #EEF1F5;
}

.corporate-value-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 22px;
}

.corporate-value-card h3 {
  margin: 0 0 10px;
  color: #1F2933;
  font-size: 19px;
  font-weight: 900;
}

.corporate-value-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.documents-empty {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: 54px;
  padding: 42px 28px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
}

.documents-empty-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 28px;
}

.documents-empty h2 {
  margin: 0 0 10px;
  color: #1F2933;
  font-size: 24px;
  font-weight: 900;
}

.documents-empty p {
  max-width: 520px;
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.documents-empty-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: #F5F7FA;
  color: #6B7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.documents-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.documents-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
}

.documents-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 24px;
}

.documents-info-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #004B93;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.documents-info-card h2 {
  margin: 0 0 12px;
  color: #1F2933;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
}

.documents-info-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.documents-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.documents-info-card a i {
  transition: transform 0.25s ease;
}

.documents-info-card a:hover i {
  transform: translateX(4px);
}

.capacity-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.capacity-note-grid-page {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
}

.capacity-note-card {
  padding: 18px;
  border: 1px solid #E8EEF5;
  border-radius: 16px;
  background: #F8FAFC;
}

.capacity-note-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #004B93;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capacity-note-card h3 {
  margin: 0 0 8px;
  color: #1F2933;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 900;
}

.capacity-note-card p {
  margin: 0;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.65;
}

.product-diversity-section {
  padding: 86px 0 92px;
  background: #FFFFFF;
}

.product-diversity-head {
  max-width: 800px;
  margin-bottom: 36px;
}

.product-diversity-head h2 {
  margin: 0;
  color: #1F2933;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.product-diversity-head p {
  margin: 14px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.75;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-category-card {
  padding: 30px;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.045);
}

.product-category-card-wide {
  grid-column: span 2;
}

.product-category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.product-category-header i {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 24px;
}

.product-category-header span {
  display: inline-block;
  margin-bottom: 7px;
  color: #004B93;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-header h3 {
  margin: 0;
  color: #1F2933;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.product-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: #F5F7FA;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.product-note-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #071B33 0%, #004B93 100%);
  color: #FFFFFF;
}

.product-note-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-note-panel h2 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.product-note-panel p {
  max-width: 820px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.product-note-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.product-note-panel a i {
  transition: transform 0.25s ease;
}

.product-note-panel a:hover i {
  transform: translateX(4px);
}

.inner-mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #071B33 0%, #004B93 100%);
  color: #FFFFFF;
}

.inner-mini-cta h2 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 900;
}

.inner-mini-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.inner-mini-cta-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.inner-mini-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.inner-mini-cta-actions a:first-child {
  background: #FFFFFF;
  color: #004B93;
}

.inner-mini-cta-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
}

/* Kurumsal Alt Sayfa Responsive */
@media (max-width: 1199px) {
  .inner-title {
    font-size: 46px;
  }

  .corporate-content {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .inner-hero {
    padding: 58px 0 38px;
  }

  .inner-hero-visual {
    min-height: 380px;
    padding: 76px 0;
  }

  .inner-title {
    font-size: 40px;
  }

  .corporate-content {
    grid-template-columns: 1fr;
  }

  .corporate-visual {
    order: -1;
  }

  .corporate-values {
    grid-template-columns: 1fr;
  }

  .documents-info-grid,
  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .capacity-note-grid {
    grid-template-columns: 1fr;
  }

  .capacity-note-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-category-card-wide {
    grid-column: auto;
  }

  .product-note-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .corporate-value-card + .corporate-value-card {
    border-left: 0;
    border-top: 1px solid #EEF1F5;
  }

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

@media (max-width: 767px) {
  .inner-hero {
    padding: 46px 0 30px;
  }

  .inner-hero-visual {
    min-height: 340px;
    padding: 62px 0;
    background-image:
      linear-gradient(90deg, rgba(7, 27, 51, 0.90) 0%, rgba(7, 27, 51, 0.72) 100%),
      url("../img/hero/hero-01.jpg");
  }

  .inner-title {
    font-size: 34px;
  }

  .inner-description {
    font-size: 15px;
  }

  .corporate-content-section {
    padding: 64px 0 68px;
  }

  .corporate-text h2 {
    font-size: 28px;
  }

  .documents-info-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .product-diversity-section {
    padding: 64px 0 70px;
  }

  .product-diversity-head h2 {
    font-size: 30px;
  }

  .product-category-card,
  .product-note-panel {
    padding: 26px;
    border-radius: 20px;
  }

  .capacity-note-grid-page {
    grid-template-columns: 1fr;
  }

  .product-note-panel a {
    width: 100%;
  }

  .corporate-visual-card,
  .corporate-visual-card img {
    min-height: 300px;
  }

  .inner-mini-cta {
    padding: 26px;
  }

  .inner-mini-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .inner-mini-cta-actions a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .inner-hero-visual {
    min-height: 320px;
    padding: 54px 0;
  }

  .inner-title {
    font-size: 30px;
  }

  .corporate-value-card {
    padding: 22px;
  }

  .documents-info-card,
  .product-category-card,
  .product-note-panel {
    padding: 22px;
  }

  .documents-info-card h2,
  .product-category-header h3,
  .product-note-panel h2 {
    font-size: 22px;
  }

  .inner-mini-cta {
    padding: 22px;
    border-radius: 20px;
  }
}

/* --- Hizmet Detay Sayfası --- */
.service-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.88) 0%, rgba(5, 22, 43, 0.74) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/services/service-tas-ocagi.jpg");
  background-size: cover;
  background-position: center center;
}

.service-hero-content {
  max-width: 820px;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  color: #FFFFFF;
}

.service-breadcrumb span:last-child {
  color: #FFFFFF;
}

.service-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-hero h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.service-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

.service-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.service-hero-badges i {
  color: #8CC7F0;
  font-size: 16px;
}

.service-detail-page {
  padding: 86px 0 92px;
  background: #FFFFFF;
}

.service-detail-intro {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 58px;
  align-items: center;
}

.service-detail-side {
  display: grid;
  gap: 18px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #004B93;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-text h2,
.service-section-heading h2,
.service-detail-cta h2 {
  margin: 0;
  color: #1F2933;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-detail-text p {
  margin: 18px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.9;
}

.service-detail-visual {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border-radius: 26px;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: cover;
}

.service-visual-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(7, 27, 51, 0.84);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.service-visual-label i {
  color: #8CC7F0;
  font-size: 20px;
}

.service-detail-quick-info {
  padding: 22px;
  border: 1px solid rgba(0, 75, 147, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, #F7FAFD 0%, #FFFFFF 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.service-detail-quick-info h3 {
  margin: 0 0 16px;
  color: #1F2933;
  font-size: 20px;
  font-weight: 900;
}

.service-detail-quick-info dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.service-detail-quick-info dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #EEF1F5;
}

.service-detail-quick-info dt {
  color: #004B93;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-quick-info dd {
  margin: 0;
  color: #1F2933;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
}

.service-usage-section,
.service-process-section,
.service-detail-features,
.service-production-gallery,
.service-delivery-section,
.service-faq {
  margin-top: 86px;
}

.service-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-section-heading p {
  margin: 14px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.75;
}

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

.service-feature-card {
  min-height: 172px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.052);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 75, 147, 0.24);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.095);
}

.service-feature-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(0, 75, 147, 0.09);
  color: #004B93;
  font-size: 22px;
}

.service-feature-card h3 {
  margin: 0;
  color: #1F2933;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 900;
}

.service-production-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.service-production-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border-radius: 24px;
  background: #071B33;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}

.service-production-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.service-production-card:hover img {
  transform: scale(1.05);
  opacity: 0.98;
}

.service-production-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0.08) 0%, rgba(7, 27, 51, 0.78) 100%);
}

.service-production-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
}

.service-delivery-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(0, 75, 147, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 75, 147, 0.075) 0%, rgba(255, 255, 255, 0.96) 56%, rgba(61, 145, 207, 0.12) 100%);
}

.service-delivery-content h2 {
  margin: 0;
  color: #1F2933;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-delivery-content p {
  margin: 16px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.85;
}

.service-delivery-list {
  display: grid;
  gap: 12px;
}

.service-delivery-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.service-delivery-list i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 75, 147, 0.09);
  color: #004B93;
  font-size: 18px;
}

.service-delivery-list span {
  color: #1F2933;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.service-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-usage-card {
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-usage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 75, 147, 0.24);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.service-usage-image {
  position: relative;
  height: 168px;
  overflow: hidden;
}

.service-usage-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-usage-card:hover .service-usage-image img {
  transform: scale(1.06);
}

.service-usage-content {
  position: relative;
  padding: 28px 22px 24px;
}

.service-usage-content i {
  position: absolute;
  top: -25px;
  left: 22px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #FFFFFF;
  border-radius: 16px;
  background: #004B93;
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(0, 75, 147, 0.24);
}

.service-usage-content h3 {
  margin: 8px 0 10px;
  color: #1F2933;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.service-usage-content p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.service-process-section {
  padding: 42px;
  border: 1px solid rgba(0, 75, 147, 0.10);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 75, 147, 0.070) 0%, rgba(255, 255, 255, 0.95) 58%, rgba(61, 145, 207, 0.10) 100%);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-process-step {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(0, 75, 147, 0.10);
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.055);
}

.service-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: #004B93;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
}

.service-process-step h3 {
  margin: 0 0 12px;
  color: #1F2933;
  font-size: 20px;
  font-weight: 900;
}

.service-process-step p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.service-faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.service-faq .service-section-heading {
  margin-bottom: 0;
}

.service-faq-panel {
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.065);
}

.service-faq-panel .accordion-item {
  border: 0;
  background: transparent;
}

.service-faq-panel .accordion-item + .accordion-item {
  border-top: 1px solid #EEF1F5;
}

.service-faq-panel .accordion-button {
  padding: 20px 24px;
  color: #1F2933;
  background: #FFFFFF;
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.service-faq-panel .accordion-button:not(.collapsed) {
  color: #004B93;
  background: rgba(0, 75, 147, 0.045);
}

.service-faq-panel .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.service-faq-panel .accordion-button::after {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background-color: rgba(0, 75, 147, 0.08);
  background-position: center;
  background-size: 14px;
}

.service-faq-panel .accordion-body {
  padding: 0 24px 22px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.service-detail-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 42px;
  margin-top: 86px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #003B75 0%, #004B93 52%, #0A66B2 100%);
  color: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 75, 147, 0.22);
}

.service-detail-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.service-detail-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.service-detail-cta-content,
.service-detail-cta-points {
  position: relative;
  z-index: 2;
}

.service-cta-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-cta h2 {
  color: #FFFFFF;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.service-detail-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.service-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-detail-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.service-detail-cta-actions a:first-child {
  background: #FFFFFF;
  color: #004B93;
}

.service-detail-cta-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.service-detail-cta-actions a:hover {
  transform: translateY(-2px);
}

.service-detail-cta-actions a:first-child:hover {
  color: #004B93;
}

.service-detail-cta-actions a:first-child:hover i {
  transform: translateX(4px);
}

.service-detail-cta-actions a i {
  transition: transform 0.25s ease;
}

.service-detail-cta-actions a:last-child:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.service-detail-cta-points {
  display: grid;
  gap: 14px;
}

.service-detail-cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}

.service-detail-cta-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.service-detail-cta-point span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* Hizmet Detay Sayfası Responsive */
@media (max-width: 1199px) {
  .service-usage-grid,
  .service-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-production-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-production-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .service-hero {
    min-height: 430px;
    padding: 78px 0;
  }

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

  .service-detail-intro,
  .service-process-grid,
  .service-delivery-section,
  .service-faq,
  .service-detail-cta {
    grid-template-columns: 1fr;
  }

  .service-delivery-content h2 {
    font-size: 32px;
  }

  .service-detail-cta-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail-cta-point {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .service-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.76) 100%),
      url("../img/services/service-tas-ocagi.jpg");
  }

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

  .service-hero p {
    font-size: 16px;
  }

  .service-detail-page {
    padding: 64px 0 70px;
  }

  .service-detail-text h2,
  .service-section-heading h2,
  .service-detail-cta h2 {
    font-size: 30px;
  }

  .service-detail-intro {
    gap: 36px;
  }

  .service-detail-visual,
  .service-detail-visual img {
    min-height: 310px;
  }

  .service-usage-section,
  .service-process-section,
  .service-detail-features,
  .service-production-gallery,
  .service-delivery-section,
  .service-faq,
  .service-detail-cta {
    margin-top: 64px;
  }

  .service-usage-grid,
  .service-feature-grid,
  .service-production-strip {
    grid-template-columns: 1fr;
  }

  .service-production-card,
  .service-production-card img {
    min-height: 260px;
  }

  .service-process-section,
  .service-delivery-section {
    padding: 28px;
    border-radius: 22px;
  }

  .service-delivery-content h2 {
    font-size: 28px;
  }

  .service-detail-cta {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .service-detail-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .service-detail-cta-actions a {
    width: 100%;
  }

  .service-detail-cta-points {
    grid-template-columns: 1fr;
  }

  .service-faq-panel .accordion-button {
    padding: 18px 18px;
    font-size: 14px;
  }

  .service-faq-panel .accordion-body {
    padding: 0 18px 18px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .service-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .service-breadcrumb {
    font-size: 12px;
  }

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

  .service-hero-eyebrow {
    font-size: 11.5px;
  }

  .service-hero-badges {
    gap: 8px;
  }

  .service-hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .service-usage-image {
    height: 190px;
  }

  .service-detail-quick-info dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-feature-card {
    min-height: auto;
  }

  .service-process-step {
    min-height: auto;
    padding: 24px;
  }

  .service-detail-cta {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .service-detail-cta-point {
    min-height: 60px;
    padding: 14px;
  }

  .service-detail-cta-point span {
    font-size: 13px;
  }
}

/* --- Makina Parkuru Sayfası --- */
.machine-page {
  background: #FFFFFF;
}

.machine-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.74) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/machines/machine-crushing.jpg");
  background-size: cover;
  background-position: center center;
}

.machine-hero-content {
  max-width: 880px;
}

.machine-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.machine-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.machine-breadcrumb a:hover,
.machine-breadcrumb span:last-child {
  color: #FFFFFF;
}

.machine-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.machine-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.machine-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

.machine-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.machine-hero-badges i {
  color: #8CC7F0;
  font-size: 16px;
}

.machine-content {
  padding: 78px 0 92px;
  background: #FFFFFF;
}

.machine-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  padding-bottom: 12px;
}

.machine-intro-text h2,
.machine-section-heading h2,
.machine-cta h2 {
  margin: 0;
  color: #1F2933;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.machine-intro-text p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.85;
}

.machine-intro-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 75, 147, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #F7FAFD 0%, #FFFFFF 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
}

.machine-intro-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E8EEF5;
}

.machine-intro-panel strong {
  color: #1F2933;
  font-size: 15px;
  font-weight: 900;
}

.machine-intro-panel span {
  color: #004B93;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.machine-showcase,
.machine-strength-strip,
.machine-process,
.machine-faq,
.machine-cta {
  margin-top: 86px;
}

.machine-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.machine-section-heading p {
  margin: 14px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.75;
}

.machine-showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(3, 190px);
  gap: 22px;
}

.machine-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px;
  background: #071B33;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.11);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.machine-showcase-card-large {
  grid-row: span 3;
  min-height: 620px;
}

.machine-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.16);
}

.machine-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.35s ease;
}

.machine-showcase-card:hover img {
  transform: scale(1.06);
}

.machine-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0.08) 0%, rgba(7, 27, 51, 0.84) 100%);
}

.machine-showcase-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #FFFFFF;
}

.machine-showcase-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(6px);
}

.machine-showcase-overlay h3 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.machine-showcase-card-large .machine-showcase-overlay h3 {
  font-size: 34px;
}

.machine-showcase-overlay p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.machine-strength-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background: linear-gradient(135deg, #071B33 0%, #0A2B50 52%, #004B93 100%);
  box-shadow: 0 22px 56px rgba(0, 56, 110, 0.18);
}

.machine-strength-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 24px;
}

.machine-strength-item + .machine-strength-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.machine-strength-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 21px;
}

.machine-strength-item span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.machine-process {
  padding: 42px;
  border: 1px solid rgba(0, 75, 147, 0.10);
  border-radius: 28px;
  background: #F7FAFD;
}

.machine-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.machine-process-step {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(0, 75, 147, 0.10);
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.055);
}

.machine-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: #004B93;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
}

.machine-process-step h3 {
  margin: 0 0 12px;
  color: #1F2933;
  font-size: 20px;
  font-weight: 900;
}

.machine-process-step p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.machine-faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.machine-faq .machine-section-heading {
  margin-bottom: 0;
}

.machine-faq-panel {
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.065);
}

.machine-faq-panel .accordion-item {
  border: 0;
  background: transparent;
}

.machine-faq-panel .accordion-item + .accordion-item {
  border-top: 1px solid #EEF1F5;
}

.machine-faq-panel .accordion-button {
  padding: 20px 24px;
  color: #1F2933;
  background: #FFFFFF;
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.machine-faq-panel .accordion-button:not(.collapsed) {
  color: #004B93;
  background: rgba(0, 75, 147, 0.045);
}

.machine-faq-panel .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.machine-faq-panel .accordion-button::after {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background-color: rgba(0, 75, 147, 0.08);
  background-position: center;
  background-size: 14px;
}

.machine-faq-panel .accordion-body {
  padding: 0 24px 22px;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.machine-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 42px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #003B75 0%, #004B93 52%, #0A66B2 100%);
  color: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 75, 147, 0.22);
}

.machine-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.machine-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.machine-cta-content,
.machine-cta-points {
  position: relative;
  z-index: 2;
}

.machine-cta-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.machine-cta h2 {
  max-width: 760px;
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.machine-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.machine-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.machine-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.machine-cta-actions a:first-child {
  background: #FFFFFF;
  color: #004B93;
}

.machine-cta-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.machine-cta-actions a:hover {
  transform: translateY(-2px);
}

.machine-cta-actions a:first-child:hover {
  color: #004B93;
}

.machine-cta-actions a:first-child:hover i {
  transform: translateX(4px);
}

.machine-cta-actions a i {
  transition: transform 0.25s ease;
}

.machine-cta-actions a:last-child:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.machine-cta-points {
  display: grid;
  gap: 14px;
}

.machine-cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}

.machine-cta-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.machine-cta-point span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* Makina Parkuru Sayfası Responsive */
@media (max-width: 1199px) {
  .machine-showcase-grid,
  .machine-strength-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .machine-showcase-grid {
    grid-template-rows: auto;
  }

  .machine-showcase-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 440px;
  }

  .machine-strength-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .machine-strength-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 991px) {
  .machine-hero {
    min-height: 430px;
    padding: 78px 0;
  }

  .machine-hero h1 {
    font-size: 46px;
  }

  .machine-intro,
  .machine-process-grid,
  .machine-faq,
  .machine-cta {
    grid-template-columns: 1fr;
  }

  .machine-cta-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .machine-cta-point {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .machine-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.92) 0%, rgba(5, 22, 43, 0.78) 100%),
      url("../img/machines/machine-crushing.jpg");
  }

  .machine-hero h1 {
    font-size: 38px;
  }

  .machine-hero p {
    font-size: 16px;
  }

  .machine-content {
    padding: 64px 0 70px;
  }

  .machine-intro-text h2,
  .machine-section-heading h2,
  .machine-cta h2 {
    font-size: 30px;
  }

  .machine-intro {
    gap: 36px;
  }

  .machine-showcase,
  .machine-strength-strip,
  .machine-process,
  .machine-faq,
  .machine-cta {
    margin-top: 64px;
  }

  .machine-showcase-grid,
  .machine-strength-strip {
    grid-template-columns: 1fr;
  }

  .machine-showcase-card,
  .machine-showcase-card-large {
    min-height: 330px;
  }

  .machine-strength-item + .machine-strength-item,
  .machine-strength-item:nth-child(3),
  .machine-strength-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .machine-process {
    padding: 28px;
    border-radius: 22px;
  }

  .machine-cta {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .machine-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .machine-cta-actions a {
    width: 100%;
  }

  .machine-cta-points {
    grid-template-columns: 1fr;
  }

  .machine-faq-panel .accordion-button {
    padding: 18px 18px;
    font-size: 14px;
  }

  .machine-faq-panel .accordion-body {
    padding: 0 18px 18px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .machine-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .machine-breadcrumb {
    font-size: 12px;
  }

  .machine-hero h1 {
    font-size: 34px;
  }

  .machine-hero-eyebrow {
    font-size: 11.5px;
  }

  .machine-hero-badges {
    gap: 8px;
  }

  .machine-hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .machine-intro-panel div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .machine-showcase-card,
  .machine-showcase-card-large {
    min-height: 300px;
  }

  .machine-showcase-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .machine-showcase-overlay h3,
  .machine-showcase-card-large .machine-showcase-overlay h3 {
    font-size: 24px;
  }

  .machine-process-step {
    min-height: auto;
    padding: 24px;
  }

  .machine-cta {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .machine-cta-point {
    min-height: 60px;
    padding: 14px;
  }

  .machine-cta-point span {
    font-size: 13px;
  }
}

/* --- Projeler Sayfası --- */
.projects-page {
  background: #FFFFFF;
}

.projects-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.72) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/gallery/gallery-06.jpg");
  background-size: cover;
  background-position: center center;
}

.projects-hero-content {
  max-width: 860px;
}

.projects-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.projects-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.projects-breadcrumb a:hover,
.projects-breadcrumb span:last-child {
  color: #FFFFFF;
}

.projects-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.projects-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.projects-hero p {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.projects-grid-section {
  padding: 86px 0 92px;
  background: #FFFFFF;
}

.projects-section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.projects-section-heading h2 {
  margin: 0;
  color: #1F2933;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.projects-section-heading p {
  margin: 14px 0 0;
  color: #6B7280;
  font-size: 15.5px;
  line-height: 1.75;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 75, 147, 0.24);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.project-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #071B33;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-card-media img {
  transform: scale(1.06);
}

.project-card-content {
  padding: 22px;
}

.project-card-content h3 {
  margin: 0 0 10px;
  color: #1F2933;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.project-card-content p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.7;
}

.projects-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 42px;
  margin-top: 86px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #003B75 0%, #004B93 52%, #0A66B2 100%);
  color: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 75, 147, 0.22);
}

.projects-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.projects-cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.projects-cta-content,
.projects-cta-points {
  position: relative;
  z-index: 2;
}

.projects-cta-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projects-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.projects-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.projects-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.projects-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.projects-cta-actions a:first-child {
  background: #FFFFFF;
  color: #004B93;
}

.projects-cta-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.projects-cta-actions a:hover {
  transform: translateY(-2px);
}

.projects-cta-actions a:first-child:hover {
  color: #004B93;
}

.projects-cta-actions a i {
  transition: transform 0.25s ease;
}

.projects-cta-actions a:first-child:hover i {
  transform: translateX(4px);
}

.projects-cta-actions a:last-child:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.projects-cta-points {
  display: grid;
  gap: 14px;
}

.projects-cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}

.projects-cta-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 18px;
}

.projects-cta-point span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* Projeler Sayfası Responsive */
@media (max-width: 1199px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .projects-hero {
    min-height: 430px;
    padding: 78px 0;
  }

  .projects-hero h1 {
    font-size: 46px;
  }

  .projects-cta {
    grid-template-columns: 1fr;
  }

  .projects-cta-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-cta-point {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .projects-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.92) 0%, rgba(5, 22, 43, 0.78) 100%),
      url("../img/gallery/gallery-06.jpg");
  }

  .projects-hero h1 {
    font-size: 38px;
  }

  .projects-hero p {
    font-size: 16px;
  }

  .projects-grid-section {
    padding: 64px 0 70px;
  }

  .projects-section-heading h2,
  .projects-cta h2 {
    font-size: 30px;
  }

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

  .project-card-media {
    height: 250px;
  }

  .projects-cta {
    margin-top: 64px;
    padding: 32px 24px;
    border-radius: 22px;
  }

  .projects-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .projects-cta-actions a {
    width: 100%;
  }

  .projects-cta-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .projects-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .projects-breadcrumb {
    font-size: 12px;
  }

  .projects-hero h1 {
    font-size: 34px;
  }

  .projects-hero-eyebrow {
    font-size: 11.5px;
  }

  .project-card-media {
    height: 220px;
  }

  .projects-cta {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .projects-cta-point {
    min-height: 60px;
    padding: 14px;
  }

  .projects-cta-point span {
    font-size: 13px;
  }
}

/* --- Referanslar Sayfası --- */
.references-page {
  background: #FFFFFF;
}

.references-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.72) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/gallery/gallery-04.jpg");
  background-size: cover;
  background-position: center center;
}

.references-hero-content {
  max-width: 860px;
}

.references-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.references-hero p {
  max-width: 740px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.references-content-section {
  padding: 86px 0 92px;
  background: #FFFFFF;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reference-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
}

.reference-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(0, 75, 147, 0.085);
  color: #004B93;
  font-size: 24px;
}

.reference-card h3 {
  margin: 0 0 12px;
  color: #1F2933;
  font-size: 21px;
  line-height: 1.26;
  font-weight: 900;
}

.reference-card p {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.references-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #071B33 0%, #004B93 100%);
  color: #FFFFFF;
}

.references-strip-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.references-strip h2 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 900;
}

.references-strip p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.references-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.references-strip a i {
  transition: transform 0.25s ease;
}

.references-strip a:hover i {
  transform: translateX(4px);
}

/* Referanslar Sayfası Responsive */
@media (max-width: 1199px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .references-hero {
    min-height: 430px;
    padding: 78px 0;
  }

  .references-hero h1 {
    font-size: 46px;
  }

  .references-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .references-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.92) 0%, rgba(5, 22, 43, 0.78) 100%),
      url("../img/gallery/gallery-04.jpg");
  }

  .references-hero h1 {
    font-size: 38px;
  }

  .references-hero p {
    font-size: 16px;
  }

  .references-content-section {
    padding: 64px 0 70px;
  }

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

  .references-strip {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .references-strip h2 {
    font-size: 26px;
  }

  .references-strip a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .references-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .references-hero h1 {
    font-size: 34px;
  }

  .reference-card {
    min-height: auto;
    padding: 22px;
    border-radius: 18px;
  }
}

/* --- Footer Bölümü --- */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 75, 147, 0.34), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(47, 142, 219, 0.22), transparent 30%),
    linear-gradient(135deg, #06172C 0%, #071B33 52%, #08213D 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
}

.footer-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.7;
}

.footer-glow-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 40px;
  background: rgba(0, 75, 147, 0.20);
}

.footer-glow-two {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: 30px;
  background: rgba(47, 142, 219, 0.14);
}

.site-footer .container-xl {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 42px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: translateY(-1px);
  opacity: 1;
}

.footer-brand p,
.footer-contact p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.footer-column h3,
.footer-contact h3 {
  position: relative;
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(47, 142, 219, 0.75);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-contact-link,
.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
}

.footer-column a::before {
  content: "";
  width: 0;
  height: 2px;
  margin-right: 0;
  border-radius: 999px;
  background: #FFFFFF;
  transition: width 0.22s ease, margin-right 0.22s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
  transform: translateX(2px);
}

.footer-column a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-contact-link:hover,
.footer-legal a:hover {
  color: #FFFFFF;
}

.footer-contact {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  margin-top: 20px;
  border-radius: 9px;
  background: #FFFFFF;
  color: #004B93;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.footer-quote-btn:hover {
  color: #004B93;
  transform: translateY(-2px);
}

.footer-quote-btn i {
  transition: transform 0.22s ease;
}

.footer-quote-btn:hover i {
  transform: translateX(4px);
}

.footer-contact-link {
  display: inline-flex;
  margin-left: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal a {
  font-size: 13px;
}

/* Footer Bölümü Responsive */
@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 38px;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: none;
  }

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

  .footer-contact-link {
    margin-left: 0;
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  .footer-logo-img {
    height: 46px;
    max-width: 190px;
  }

  .footer-column h3,
  .footer-contact h3 {
    margin-bottom: 14px;
  }

  .footer-quote-btn {
    width: 100%;
  }

  .footer-contact-link {
    width: 100%;
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* --- İletişim Sayfası --- */
.contact-page {
  background: #FFFFFF;
}

.contact-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.72) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/hero/hero-03.jpg");
  background-size: cover;
  background-position: center center;
}

.contact-hero-content {
  max-width: 820px;
}

.contact-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.contact-breadcrumb a:hover,
.contact-breadcrumb span:last-child {
  color: #FFFFFF;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.contact-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.contact-section {
  padding: 86px 0 92px;
  background: #FFFFFF;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: stretch;
}

.contact-info {
  padding: 34px;
  border: 1px solid #E5E7EB;
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
}

.contact-info h2 {
  margin: 0 0 26px;
  color: #1F2933;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #EEF1F5;
  border-radius: 18px;
  background: linear-gradient(135deg, #F7FAFD 0%, #FFFFFF 100%);
}

.contact-info-card i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 75, 147, 0.09);
  color: #004B93;
  font-size: 21px;
}

.contact-info-card h3 {
  margin: 0 0 6px;
  color: #1F2933;
  font-size: 16px;
  font-weight: 900;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.65;
}

.contact-info-card a {
  color: #004B93;
  font-weight: 800;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #00386E;
}

.contact-map {
  overflow: hidden;
  min-height: 460px;
  border: 1px solid #E5E7EB;
  border-radius: 26px;
  background: #F5F7FA;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.contact-map-placeholder {
  display: flex;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
}

.contact-map-placeholder h3 {
  margin: 0 0 10px;
  color: #1F2933;
  font-size: 24px;
  font-weight: 900;
}

.contact-map-placeholder p {
  max-width: 420px;
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.75;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #071B33 0%, #004B93 100%);
  color: #FFFFFF;
}

.contact-cta .section-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.contact-cta h2 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.contact-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #004B93;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-cta a:hover {
  color: #004B93;
  transform: translateY(-2px);
}

.contact-cta a i {
  transition: transform 0.25s ease;
}

.contact-cta a:hover i {
  transform: translateX(4px);
}

/* İletişim Sayfası Responsive */
@media (max-width: 991px) {
  .contact-hero {
    min-height: 430px;
    padding: 78px 0;
  }

  .contact-hero h1 {
    font-size: 46px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .contact-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.92) 0%, rgba(5, 22, 43, 0.78) 100%),
      url("../img/hero/hero-03.jpg");
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-section {
    padding: 64px 0 70px;
  }

  .contact-info {
    padding: 26px;
    border-radius: 22px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-map,
  .contact-map iframe,
  .contact-map-placeholder {
    min-height: 320px;
  }

  .contact-cta {
    padding: 28px;
    border-radius: 22px;
  }

  .contact-cta a {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .contact-breadcrumb {
    font-size: 12px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero-eyebrow {
    font-size: 11.5px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-info-card {
    min-height: auto;
    padding: 16px;
  }

  .contact-cta {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-cta h2 {
    font-size: 24px;
  }
}

/* --- Galeri Sayfası --- */
.gallery-page-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 27, 51, 0.88) 0%, rgba(7, 27, 51, 0.70) 46%, rgba(7, 27, 51, 0.28) 100%),
    url("../img/hero/hero-03.jpg");
}

.gallery-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.gallery-page-breadcrumb a,
.gallery-page-breadcrumb span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.gallery-page-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}

.gallery-page-breadcrumb a:hover {
  color: #FFFFFF;
}

.gallery-page-section {
  padding: 78px 0 90px;
  background: #FFFFFF;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-page-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #F5F7FA;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
  text-decoration: none;
  color: #1F2933;
  height: 280px;
}

.gallery-page-card:hover {
  color: #1F2933;
}

.gallery-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.50));
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.gallery-page-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-page-card:hover img {
  transform: scale(1.07);
}

.gallery-page-card:hover::after {
  opacity: 1;
}

/* Galeri Sayfası Responsive */
@media (max-width: 1199px) {
  .gallery-page-card {
    height: 260px;
  }
}

@media (max-width: 991px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-page-card {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .gallery-page-section {
    padding: 58px 0 64px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-page-card {
    height: 240px;
  }

  .gallery-page-breadcrumb {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .gallery-page-section {
    padding: 48px 0 54px;
  }

  .gallery-page-card {
    height: 220px;
    border-radius: 16px;
  }

  .gallery-page-card span {
    left: 15px;
    bottom: 14px;
    font-size: 14px;
  }
}

/* --- Teklif Al Sayfası --- */
.quote-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #FFFFFF;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 43, 0.90) 0%, rgba(5, 22, 43, 0.72) 48%, rgba(5, 22, 43, 0.34) 100%),
    url("../img/hero/hero-02.jpg");
  background-size: cover;
  background-position: center center;
}

.quote-hero-content {
  max-width: 820px;
}

.quote-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.quote-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.quote-breadcrumb a:hover,
.quote-breadcrumb span:last-child {
  color: #FFFFFF;
}

.quote-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quote-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #FFFFFF;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.quote-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 17px;
  line-height: 1.75;
}

.quote-section {
  padding: 86px 0 90px;
  background: #FFFFFF;
}

.quote-layout {
  max-width: 820px;
  margin: 0 auto;
}

.quote-form-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form-head h2 {
  font-size: 38px;
  font-weight: 900;
  color: #1F2933;
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.quote-form-head p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

.quote-form-card {
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.075);
}

.quote-form-title {
  margin: 0 0 28px;
  color: #1F2933;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field label {
  display: block;
  margin-bottom: 7px;
  color: #2F3640;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #FFFFFF;
  color: #2F3640;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-field textarea {
  padding: 14px 16px;
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: #004B93;
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.10);
}

.quote-field select {
  appearance: auto;
}

.quote-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  background: #004B93;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.quote-submit-btn:hover {
  background: #00386E;
  transform: translateY(-2px);
}

.quote-form-note {
  margin: 18px 0 0;
  color: #9CA3AF;
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

.quote-benefits {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  justify-content: center;
}

.quote-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4B5563;
}

.quote-benefit i {
  font-size: 18px;
  color: #004B93;
  flex-shrink: 0;
}

/* Teklif Al Sayfası Responsive */
@media (max-width: 1199px) {
  .quote-form-card {
    padding: 32px;
  }

  .quote-hero h1 {
    font-size: 50px;
  }

  .quote-form-head h2 {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .quote-hero {
    min-height: 430px;
    padding: 78px 0;
  }

  .quote-hero h1 {
    font-size: 46px;
  }

  .quote-form-head h2 {
    font-size: 32px;
  }

  .quote-benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .quote-hero {
    min-height: 380px;
    padding: 64px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 22, 43, 0.92) 0%, rgba(5, 22, 43, 0.78) 100%),
      url("../img/hero/hero-02.jpg");
  }

  .quote-hero h1 {
    font-size: 38px;
  }

  .quote-hero p {
    font-size: 16px;
  }

  .quote-section {
    padding: 64px 0 70px;
  }

  .quote-form-card {
    padding: 26px;
    border-radius: 22px;
  }

  .quote-form-head h2 {
    font-size: 28px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .quote-hero {
    min-height: 360px;
    padding: 56px 0;
  }

  .quote-breadcrumb {
    font-size: 12px;
  }

  .quote-hero h1 {
    font-size: 34px;
  }

  .quote-hero-eyebrow {
    font-size: 11.5px;
  }

  .quote-section {
    padding: 56px 0 60px;
  }

  .quote-form-card {
    padding: 20px;
    border-radius: 20px;
  }

  .quote-form-head h2 {
    font-size: 26px;
  }

  .quote-benefits {
    gap: 14px;
  }

  .quote-benefit {
    font-size: 13px;
  }
}
/* Panelden yönetilen hero görsel katmanı */
.inner-hero,
.projects-hero,
.references-hero,
.machine-hero,
.service-hero,
.quote-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
}

.managed-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.managed-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 51, 0.82), rgba(7, 27, 51, 0.42));
}

.managed-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inner-hero .container-xl,
.projects-hero .container-xl,
.references-hero .container-xl,
.machine-hero .container-xl,
.service-hero .container-xl {
  position: relative;
  z-index: 1;
}

.quote-hero .container-xl,
.contact-hero .container-xl {
  position: relative;
  z-index: 1;
}
