:root {
    --color-primary: #1a4d8c;
    --color-primary-hover: #153d6f;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-bg: #fafafa;
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    padding-top: 0.10rem;
    padding-bottom: 0.30rem;
    min-height: 4.0rem;
}

.navbar > .container {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.site-logo-brand {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    margin-right: 1rem;
}

.site-logo {
    height: 72px;
    max-height: 72px;
    width: auto;
    max-width: min(320px, 58vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .navbar-toggler {
    padding: 0.65rem 0.75rem;
    margin: 0.25rem 0;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.rich-content {
    color: var(--color-muted);
    line-height: 1.75;
}

.rich-content p {
    margin-bottom: 1rem;
}

.rich-content ul,
.rich-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.rich-content a {
    color: var(--color-primary);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--color-muted) !important;
    font-size: 0.975rem;
    font-weight: 500;
    padding: 0.65rem 1rem !important;
    transition: color 0.2s;
}

@media (max-width: 991.98px) {
    .hero-slide-img {
        height: 480px;
    }

    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
        min-height: auto;
    }

    .site-logo {
        height: 56px;
        max-height: 56px;
        max-width: min(260px, 70vw);
    }

    .navbar .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0.75rem 0.25rem !important;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

/* Hero — full width */
.hero-eyebrow,
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-primary);
}

.hero-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel-full {
    margin: 0;
}

.hero-carousel-full .carousel-inner {
    height: 600px;
}

.hero-carousel-full .carousel-item {
    position: relative;
    height: 600px;
}

.hero-slide-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.45) 0%,
        rgba(15, 23, 42, 0.55) 50%,
        rgba(15, 23, 42, 0.65) 100%
    );
    pointer-events: none;
}

.hero-fullwidth-fallback {
    height: 600px;
    background: linear-gradient(135deg, #1a4d8c 0%, #153d6f 50%, #0f172a 100%);
}

.hero-fullwidth-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-caption-inner {
    max-width: 820px;
    padding: 2rem 1.5rem;
    pointer-events: auto;
}

.hero-eyebrow-light {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-caption-inner h1 {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    line-height: 1.2;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-full-indicators {
    z-index: 6;
    margin-bottom: 1.5rem;
}

.hero-full-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 2px solid transparent;
    opacity: 1;
    transition: all 0.25s ease;
}

.hero-full-indicators .active {
    background-color: #fff;
    transform: scale(1.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-full-control {
    z-index: 6;
    width: 8%;
    opacity: 1;
}

.hero-full-control .hero-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-full-control:hover .hero-control-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.08);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1.15s;
    transition-timing-function: ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Hero buttons */
.btn-hero {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26, 77, 140, 0.28);
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-hero-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    background: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-hero-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn-hero-light:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Faaliyet kartları */
.activities-section {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.activities-intro {
    max-width: 520px;
}

.activity-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.activity-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0fa, #f0f4f8);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.activity-card h3 {
    margin-bottom: 0.75rem;
}

/* Ortak kart hover */
.interactive-card {
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.interactive-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1) !important;
}

.news-card.interactive-card,
.content-card.interactive-card {
    overflow: hidden;
}

.link-view-all {
    transition: color 0.25s ease, transform 0.25s ease;
}

.link-view-all:hover {
    color: var(--color-primary) !important;
    transform: translateX(3px);
}

/* Scroll fade-in */
.fade-in-section {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons (genel) */
.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-outline-secondary {
    border-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline-secondary:hover {
    background: var(--color-bg);
    border-color: #d1d5db;
    color: var(--color-text);
}

/* Tıklanabilir kartlar (liste + ana sayfa) */
.clickable-card {
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12) !important;
}

.content-card-media {
    overflow: hidden;
    flex-shrink: 0;
}

.news-card-img,
.content-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.clickable-card:hover .news-card-img,
.clickable-card:hover .content-card-img {
    transform: scale(1.03);
}

.news-card-placeholder,
.content-card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.clickable-card .stretched-link::after {
    z-index: 1;
}

.content-card-cta {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.clickable-card .card-title {
    transition: color 0.2s ease;
}

.clickable-card:hover .card-title {
    color: var(--color-primary);
}

/* Page header */
.page-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.projects-page-intro {
    max-width: 36rem;
}

/* Projeler — yatay liste kartları */
.projects-list-section {
    background: var(--color-bg);
}

.project-list-card {
    background: #fff;
    border-radius: 16px !important;
    margin-bottom: 0;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-list-card .row {
    min-height: 300px;
}

.project-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(26, 77, 140, 0.14) !important;
}

.project-list-media {
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.project-list-img {
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-list-card:hover .project-list-img {
    transform: scale(1.03);
}

.project-list-placeholder {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 3rem;
    opacity: 0.35;
}

.project-list-body {
    padding: 2rem 2rem 2rem 1.75rem;
}

.project-list-title {
    color: #0f172a;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.project-list-card:hover .project-list-title {
    color: var(--color-primary);
}

.project-list-excerpt {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.project-list-meta time i {
    color: var(--color-primary);
}

.project-status-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}

.project-status-active {
    color: #1a4d8c;
    background: rgba(26, 77, 140, 0.1);
    border: 1px solid rgba(26, 77, 140, 0.2);
}

.project-status-done {
    color: #047857;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.project-list-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    pointer-events: none;
    transition: gap 0.25s ease, color 0.2s ease;
}

.project-list-card:hover .project-list-cta {
    gap: 0.75rem;
    color: var(--color-primary-hover);
}

.project-list-cta i {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.project-list-card:hover .project-list-cta i {
    transform: translateX(4px);
}

.project-list-card .stretched-link::after {
    z-index: 1;
}

@media (max-width: 767.98px) {
    .project-list-media,
    .project-list-img,
    .project-list-placeholder {
        min-height: 200px;
    }

    .project-list-body {
        padding: 1.5rem;
    }

    .project-list-img {
        border-radius: 16px 16px 0 0;
    }
}

@media (min-width: 768px) {
    .project-list-img,
    .project-list-placeholder {
        border-radius: 16px 0 0 16px;
    }
}

/* Hakkımızda */
.about-hero-section {
    background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.about-hero-title {
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.about-hero-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
}

.about-hero-lead strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-hero-tagline {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-muted);
    padding-left: 1rem;
    border-left: 3px solid var(--color-primary);
    margin-bottom: 0;
}

.about-hero-visual {
    background: #e8eef5;
}

.about-hero-image {
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    min-height: 280px;
}

.about-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(26, 77, 140, 0.06);
}

.about-info-badge i {
    color: var(--color-primary);
    font-size: 1rem;
}

.about-info-badge strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-mv-section {
    background: #fff;
}

.about-mv-card {
    padding: 2rem 2rem 2.25rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef3f9 100%);
    border: 1px solid rgba(26, 77, 140, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 77, 140, 0.1);
}

.about-mv-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 77, 140, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.about-mv-icon-alt {
    background: rgba(45, 108, 181, 0.12);
}

.about-values-section {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.about-value-card {
    padding: 1.75rem 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 77, 140, 0.2);
    box-shadow: 0 14px 36px rgba(26, 77, 140, 0.1);
}

.about-value-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.1) 0%, rgba(45, 108, 181, 0.08) 100%);
    color: var(--color-primary);
    font-size: 1.65rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d6cb5 100%);
    color: #fff;
}

@media (max-width: 991.98px) {
    .about-hero-image {
        min-height: 220px;
    }

    .about-hero-title {
        font-size: 2rem;
    }
}

/* Detail */
.detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.detail-content {
    font-size: 1.0625rem;
    line-height: 1.75;
}

/* Raporlar — liste kartı placeholder */
.report-card-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
    border-bottom: 1px solid var(--color-border);
}

.report-card-placeholder .report-placeholder-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.report-card-placeholder .report-placeholder-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}

/* Rapor detay — 2 sütun */
.report-detail-hero {
    background: var(--color-bg);
    min-height: 60vh;
}

.report-detail-visual {
    background: #fff;
    box-shadow: 0 16px 48px rgba(26, 77, 140, 0.12) !important;
}

.report-detail-cover {
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    min-height: 320px;
}

.report-detail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 380px;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(165deg, #f8fafc 0%, #eef3f9 50%, #e8eef5 100%);
    border: 1px solid rgba(26, 77, 140, 0.08);
}

.report-detail-placeholder .report-placeholder-logo {
    max-width: 160px;
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
    filter: drop-shadow(0 4px 12px rgba(26, 77, 140, 0.12));
}

.report-detail-placeholder .report-placeholder-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.report-detail-breadcrumb .breadcrumb-item a {
    color: var(--color-muted);
    text-decoration: none;
}

.report-detail-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-primary);
}

.report-detail-breadcrumb .breadcrumb-item.active {
    color: var(--color-text);
    font-weight: 500;
}

.report-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.report-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1.75rem;
}

.report-detail-date i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.report-detail-summary {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 2rem;
}

.report-detail-summary-empty {
    font-style: italic;
    margin-bottom: 2rem;
}

.report-detail-actions {
    margin-top: 0.5rem;
}

.btn-report-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 2rem;
    min-width: 280px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d6cb5 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(26, 77, 140, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.btn-report-download:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 77, 140, 0.45);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
}

.btn-report-download i {
    font-size: 1.75rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .report-detail-cover {
        aspect-ratio: 16 / 10;
        min-height: 240px;
    }

    .report-detail-placeholder {
        min-height: 280px;
    }

    .btn-report-download {
        width: 100%;
        min-width: 0;
    }
}

/* İletişim sayfası */
.contact-section {
    background: #fff;
}

.contact-info-panel {
    padding: 0.5rem 0;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0fa, #f0f4f8);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: 0.15rem;
}

.contact-info-list a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 1.125rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 77, 140, 0.2);
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-form .form-control {
    border-color: var(--color-border);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 140, 0.12);
}

/* Kurumsal footer */
.site-footer-corporate {
    background: linear-gradient(180deg, #1a2332 0%, #111827 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 4rem;
    padding-bottom: 0;
}

.footer-main {
    padding-bottom: 2.5rem;
}

.footer-corporate-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-slogan {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-corporate-links li {
    margin-bottom: 0.65rem;
}

.footer-corporate-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-corporate-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991.98px) {
    .contact-form-card {
        padding: 1.5rem;
    }

    .footer-corporate-logo {
        height: 44px;
    }
}

/* Empty state */
.empty-state i {
    opacity: 0.4;
}
