/* assets/css/style.css */

:root {
    /* Color Palette - Deep Corporate Blue & Premium Gold */
    --primary-color: #0d1b2a;
    --primary-light: #1b263b;
    --primary-lighter: #415a77;
    --accent-color: #e0e1dd;
    /* Soft Platinum/Silver */
    --gold: #393881;
    --text-color: #333333;
    --text-light: #778da9;
    --bg-light: #f8f9fa;
    --white: #ffffff;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Removed scroll-snap */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-width: 280px;
    /* Safe area for notched devices (iPhone X+, etc.) */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

header.scrolled {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10;
}

header.scrolled .logo {
    color: var(--primary-color);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 65px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
    filter: drop-shadow(0 5px 15px rgba(57, 56, 129, 0.4));
}

header.scrolled .logo img {
    height: 55px;
    /* Invert white logo to black/dark for visibility on white background */
    filter: invert(1);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.9;
}

header.scrolled .nav-link {
    color: var(--primary-color);
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

/* Sektörler Mega Menu - header yüksekliğine göre konumlanır (JS --header-height) */
.sectors-mega .sectors-mega-menu {
    position: fixed;
    top: var(--header-height, 78px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    pointer-events: none;
    background: linear-gradient(180deg, #0d1b2a 0%, #162536 45%, #0d1b2a 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 24px 24px;
}

.sectors-mega:hover .sectors-mega-menu,
.sectors-mega.sectors-open .sectors-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sectors-mega:hover .sectors-trigger,
.sectors-mega.sectors-open .sectors-trigger {
    color: var(--gold);
}

.sectors-mega:hover .sectors-trigger::after,
.sectors-mega.sectors-open .sectors-trigger::after {
    opacity: 1;
    width: 100%;
}

.sectors-mega-menu .sectors-mega-inner {
    max-width: min(1680px, 96vw);
    margin: 0 auto;
    padding: 2rem 20px 2.25rem;
    border-top: 3px solid var(--gold);
    position: relative;
}

.sectors-mega-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sectors-mega-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.sectors-mega-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.sectors-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
}

/* Geniş ekranlarda sektör kartları sağa sola yayılsın */
@media (min-width: 1400px) {
    .sectors-mega-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1700px) {
    .sectors-mega-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.sector-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.sector-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.sector-card-image {
    min-height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1.25rem;
    background: transparent;
    overflow: hidden;
    border-bottom: none;
}

.sector-card-image img {
    max-height: 125px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(15%) brightness(1.05);
    opacity: 0.95;
    transition: all 0.4s ease;
}

.sector-card:hover .sector-card-image img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.sector-card-content {
    padding: 1.15rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    text-align: center;
}

.sector-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-card-title {
    color: var(--gold);
}

.sector-card-subtitle {
    display: none;
}

.sector-card-arrow {
    display: none;
}

.sectors-mega-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.sectors-mega-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.sectors-mega-all:hover {
    color: #fff;
    gap: 0.65rem;
}

.sectors-mega-all i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.sectors-mega-all:hover i {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .sectors-mega-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sectors-mega-menu .sectors-mega-inner {
        padding: 1.75rem 2rem;
    }
    .sectors-mega-header {
        margin-bottom: 1.25rem;
    }
    .sectors-mega-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .sectors-mega-menu .sectors-mega-inner {
        padding: 1.5rem 1.25rem;
    }
    .sectors-mega-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    .sectors-mega-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .sectors-mega-title {
        font-size: 1.2rem;
    }
    .sectors-mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .sector-card-arrow {
        display: none;
    }
    .sector-card-title {
        padding-right: 0;
    }
    .sector-card-image {
        min-height: 130px;
        padding: 1.5rem 1rem;
    }
    .sector-card-image img {
        max-height: 90px;
    }
    .sector-card-content {
        padding: 1rem 1.15rem;
    }
    .sector-card-title {
        font-size: 0.92rem;
    }
    .sector-card-subtitle {
        font-size: 0.72rem;
    }
    .sectors-mega-footer {
        margin-top: 1.25rem;
        padding-top: 0.75rem;
    }
    .sectors-mega-all {
        font-size: 0.85rem;
    }
}

/* Dynamic Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-bg.active {
    opacity: 1;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.5) 45%, rgba(13, 27, 42, 0.2) 70%, transparent 100%);
    pointer-events: none;
}

.hero-content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-content-layer.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-content-layer.active .hero-anim {
    opacity: 1;
    transform: translateY(0);
}

.hero-text {
    max-width: 720px;
    padding: 80px 0 120px;
    position: relative;
    z-index: 3;
}

.hero-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content-layer.active .hero-subtitle.hero-anim { transition-delay: 0.1s; }
.hero-content-layer.active .hero-title.hero-anim { transition-delay: 0.2s; }
.hero-content-layer.active .hero-desc.hero-anim { transition-delay: 0.35s; }
.hero-content-layer.active .btn-outline.hero-anim { transition-delay: 0.5s; }

.hero-accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0.85;
    z-index: 2;
}

/* Hero tag (subtitle badge) - site palette: primary blue & gold accent */
.hero-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.5rem 1.35rem;
    background: rgba(13, 27, 42, 0.55);
    border: 1px solid rgba(57, 56, 129, 0.5);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(57, 56, 129, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}


.hero-title {
    font-size: 3.75rem;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 4px 40px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.25rem;
    max-width: 560px;
    font-weight: 400;
    line-height: 1.65;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: #fff;
    padding: 1rem 2.5rem;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.btn-outline::before {
    background-color: var(--gold);
}

.btn-outline:hover {
    color: var(--primary-color);
    border-color: var(--gold);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

/* Hero Nav (Bottom Logo Strip) */
.hero-nav-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    padding: 1.5rem 0;
}

.hero-nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-nav-item {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.75;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}

.hero-nav-item:hover,
.hero-nav-item.active {
    opacity: 1;
    transform: translateY(-5px);
    border-bottom-color: var(--gold);
}

.nav-logo-box {
    width: 110px;
    height: 68px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-nav-item:hover .nav-logo-box {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hero-nav-item.active .nav-logo-box {
    box-shadow: 0 8px 28px rgba(57, 56, 129, 0.25), 0 0 0 2px var(--gold);
    border-color: var(--gold);
    background: #fff;
}

.nav-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    /* More corporate */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(57, 56, 129, 0.2);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 8rem 0;
    /* More breathing room */
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Cards */
.sectors {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--white);
    border-radius: 8px;
    /* Softer, but not fully round */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 250px;
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card h4 {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

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

.card-link:hover {
    color: var(--gold);
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1520 0%, #060e15 100%);
    /* Deep, rich dark */
    color: var(--white);
    font-family: var(--font-body);
    padding: 6rem 0 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    position: relative;
    overflow: hidden;
}

/* Footer Background Pattern */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(57, 56, 129, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.footer-col,
.footer-col p,
.footer-col a,
.footer-col span {
    font-family: var(--font-body);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col p {
    color: #a0aab5;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Link Lists */
.footer-col ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-col ul li a {
    color: #a0aab5;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* Icon Box for Contact */
.icon-box {
    width: 25px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-col ul li span {
    color: #a0aab5;
}

/* Footer iletişim linkleri (adres, telefon, e-posta) – tıklanabilir */
.footer-contact-link {
    color: #a0aab5;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.2s ease;
    flex: 1;
    word-break: break-word;
}
.footer-contact-link:hover {
    color: var(--gold);
    text-decoration: underline;
    padding-left: 0;
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    width: 40px;
    background: var(--gold);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer - Mor Teknoloji (Yazılım Geliştirici) */
.footer-dev-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-dev-label {
    font-size: 0.85rem;
    color: #6c757d;
}
.footer-mor-logo-btn {
    display: inline-flex;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-mor-logo-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.footer-mor-logo-btn img {
    height: 32px;
    width: auto;
    display: block;
}

/* Scroll to top - sağ alt köşe, kaydırınca görünür */
.scroll-to-top {
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(24px, env(safe-area-inset-right));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(57, 56, 129, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 999;
    padding: 0;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(57, 56, 129, 0.5);
    transform: translateY(-2px);
}
.scroll-to-top:active {
    transform: translateY(0);
}
.scroll-to-top i {
    font-size: 1.2rem;
    line-height: 1;
}

/* Mor Teknoloji Modal */
.mor-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mor-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mor-modal {
    background: var(--white);
    border-radius: 12px;
    max-width: 440px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.mor-modal-overlay.active .mor-modal {
    transform: scale(1);
}
.mor-modal-logo {
    margin-bottom: 1.5rem;
}
.mor-modal-logo img {
    height: 56px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.mor-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.mor-modal-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.mor-modal-text strong {
    color: #393881;
}
.mor-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.mor-modal-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid #dee2e6;
    background: var(--white);
    color: #333;
}
.mor-modal-btn-close {
    border-color: #dee2e6;
    background: var(--white);
}
.mor-modal-btn-close:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}
.mor-modal-btn-primary {
    background: #393881;
    color: var(--white);
    border-color: #393881;
}
.mor-modal-btn-primary:hover {
    background: #2d2d6a;
    border-color: #2d2d6a;
    color: var(--white);
}

/* İletişim formu sonuç modalı */
.contact-result-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-result-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.contact-result-modal {
    background: var(--white);
    border-radius: 12px;
    max-width: 440px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.contact-result-modal-overlay.active .contact-result-modal {
    transform: scale(1);
}
.contact-result-modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.contact-result-modal-overlay.active .contact-result-modal-icon .fa-check-circle {
    color: #28a745;
}
.contact-result-modal-overlay.active .contact-result-modal-icon .fa-exclamation-circle {
    color: #dc3545;
}
.contact-result-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.contact-result-modal-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.contact-result-modal-actions {
    display: flex;
    justify-content: center;
}

/* Mobile */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    color: var(--white);
    position: relative;
    z-index: 1001;
    background: transparent;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.05);
}

.mobile-toggle i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.mobile-toggle.active i.fa-bars::before {
    content: "\f00d";
}

header.scrolled .mobile-toggle {
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Nav mobilde yer kaplamasın, hamburger tam sağa yaslansın */
    header .header-inner nav {
        width: 0;
        min-width: 0;
        overflow: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 88%;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        padding-top: max(70px, env(safe-area-inset-top));
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
        padding-left: 0;
        padding-right: 0;
        gap: 0;
        box-shadow: -8px 0 48px rgba(0, 0, 0, 0.18), -2px 0 16px rgba(0, 0, 0, 0.08);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Menü başlık alanı */
    .nav-menu::before {
        content: 'Menü';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 62px;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.95);
        background: linear-gradient(180deg, var(--primary-color) 0%, #0f2137 50%, var(--primary-light) 100%);
        border-bottom: 3px solid var(--gold);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
                    0 4px 20px rgba(0, 0, 0, 0.12);
    }

    /* Mobil menü açıkken kapatma ikonunu Menü yazısının sağına yasla */
    .mobile-toggle.active {
        position: fixed;
        top: 6px;
        right: 1rem;
        margin-left: 0;
        color: rgba(255, 255, 255, 0.95);
        background: transparent;
        z-index: 1002;
    }

    .mobile-toggle.active:hover {
        background: transparent;
    }

    @supports (top: env(safe-area-inset-top)) {
        .mobile-toggle.active {
            top: max(6px, env(safe-area-inset-top));
            right: max(1rem, env(safe-area-inset-right));
        }
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        color: var(--primary-color);
        font-size: 0.95rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        min-height: 52px;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
        position: relative;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(57, 56, 129, 0.06);
        color: var(--gold);
        padding-left: 1.75rem;
    }

    .nav-link:hover::before {
        transform: scaleY(1);
    }

    .nav-link i.fa-chevron-down {
        color: var(--text-light);
        font-size: 0.75rem;
        transition: transform 0.25s ease, color 0.2s ease;
    }

    .nav-link:hover i.fa-chevron-down,
    .sectors-trigger:hover i.fa-chevron-down {
        color: var(--gold);
    }

    .nav-link:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 2px;
    }

    /* Mobil menü kaydırma çubuğu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(57, 56, 129, 0.25);
        border-radius: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(57, 56, 129, 0.4);
    }

    .sectors-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .sectors-trigger i.fa-chevron-down {
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }

    .sectors-mega.active .sectors-trigger i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Mobile: Sektörler Mega Menu */
    .sectors-mega .sectors-mega-menu {
        position: static;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .sectors-mega.active .sectors-mega-menu {
        display: block;
    }

    .sectors-mega .sectors-mega-menu {
        position: static;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .sectors-mega.active .sectors-mega-menu {
        display: block;
    }

    .sectors-mega-menu .sectors-mega-inner {
        background: var(--bg-light);
        border-top: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 12px rgba(0, 0, 0, 0.06);
        padding: 1rem 1.25rem;
        margin: 0.5rem 1rem 0.75rem;
        border-radius: 12px;
        border: 1px solid rgba(57, 56, 129, 0.12);
    }

    .sectors-mega-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .sectors-mega-label {
        color: var(--primary-color);
        opacity: 0.85;
        font-size: 0.65rem;
    }

    .sectors-mega-title {
        color: var(--primary-color);
        font-size: 1rem;
    }

    .sectors-mega-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .sector-card {
        flex-direction: row;
        align-items: center;
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .sector-card:hover {
        transform: translateX(4px);
        border-color: rgba(57, 56, 129, 0.35);
        box-shadow: 0 4px 12px rgba(57, 56, 129, 0.1);
    }

    .sector-card-image {
        min-height: 56px;
        width: 64px;
        flex-shrink: 0;
        border-bottom: none;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.75rem;
        border-radius: 10px 0 0 10px;
    }

    .sector-card-image img {
        max-height: 40px;
        object-fit: contain;
    }

    .sector-card-content {
        padding: 0.85rem 1rem;
    }

    .sector-card-title {
        color: var(--primary-color);
        font-size: 0.9rem;
        font-weight: 600;
        padding-right: 0;
        margin: 0;
    }

    .sector-card-subtitle {
        color: var(--text-light);
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    .sector-card-arrow {
        display: none;
    }

    .sectors-mega-footer {
        border-top-color: rgba(0, 0, 0, 0.08);
        margin-top: 1rem;
        padding-top: 0.75rem;
    }

    .sectors-mega-all {
        color: var(--primary-color);
        font-size: 0.85rem;
    }

    .sectors-mega-all:hover {
        color: var(--gold);
    }

    .sectors-mega.active .sectors-trigger i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .sectors-trigger i.fa-chevron-down {
        transition: transform 0.3s ease;
        display: inline-block;
    }
}

/* Animations Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-bottom: 0;
}

.page-hero .overlay {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.7) 100%);
}

.page-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* About Page Hero (custom layout) */
.about-hero {
    text-align: left;
    position: relative;
    background-image: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(57, 56, 129, 0.18) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(65, 90, 119, 0.25) 0, transparent 55%),
        linear-gradient(135deg, #060e15 0%, #0d1b2a 40%, #1b263b 100%);
    overflow: hidden;
}

.about-hero .overlay {
    background: linear-gradient(120deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.85) 40%, rgba(13, 27, 42, 0.4) 100%);
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    max-width: 650px;
}

.about-hero .hero-title {
    font-size: 3.6rem;
    margin-bottom: 1.4rem;
}

.about-hero .hero-desc {
    max-width: 580px;
}

.about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.8rem;
}

.about-hero-meta .meta-item {
    min-width: 190px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.about-hero-meta .meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.about-hero-meta .meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.about-hero-badge {
    flex-shrink: 0;
}

.about-hero-badge-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background:
        conic-gradient(from 200deg, rgba(57, 56, 129, 0.6), rgba(13, 27, 42, 0.3), rgba(65, 90, 119, 0.4), rgba(57, 56, 129, 0.8)),
        radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.25), transparent 60%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: floatBadge 9s ease-in-out infinite alternate, rotateBadge 22s linear infinite;
}

.about-hero-badge-inner .badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-hero-badge-inner .badge-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-hero-badge-inner::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    opacity: 0.8;
}

.badge-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-decoration {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 40%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.35;
    z-index: 1;
}

.hero-decoration--left {
    top: -60px;
    left: -80px;
    transform: rotate(-12deg);
}

.hero-decoration--right {
    bottom: -90px;
    right: -60px;
    transform: rotate(18deg);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(6px);
    }

    100% {
        transform: translateY(-4px) translateX(-4px);
    }
}

@keyframes rotateBadge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .about-hero {
        text-align: center;
    }

    .about-hero-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-hero-text {
        max-width: 100%;
    }

    .about-hero .hero-title {
        font-size: 2.6rem;
    }

    .about-hero-meta {
        justify-content: center;
    }

    .about-hero-badge-inner {
        width: 220px;
        height: 220px;
    }

    .hero-decoration {
        display: none;
    }
}

/* About Page Components */
.about-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Restoring/Ensuring Generic Section Styles */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    transform: translateY(-50%);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 550px;
}

/* Image Wrapper & Badge (Restored) */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    transition: transform 0.4s ease;
}

.image-wrapper:hover .experience-badge {
    transform: scale(1.1) rotate(-5deg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Values Section (Mission/Vision) */
.values-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.values-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
    .values-grid--three {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.value-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(57, 56, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .icon-box {
    background: var(--gold);
    color: var(--white);
    transform: rotateY(360deg);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stats Section (Modern) */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Companies Section (About Page) */
.companies-section {
    background-color: var(--bg-light);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.company-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.company-logo {
    width: 120px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.company-card:hover .company-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.company-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.company-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.company-link i {
    transition: transform 0.3s ease;
}

.company-link:hover {
    color: var(--gold);
}

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

/* Contact CTA Section (About Page) */
.contact-cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: var(--white);
}

.contact-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    border-radius: 16px;
    background: rgba(13, 27, 42, 0.85);
    box-shadow: var(--shadow-md);
}

.contact-cta-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.contact-cta-action .btn {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .contact-cta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .contact-cta-text {
        max-width: 100%;
    }

    .contact-cta-action {
        width: 100%;
        max-width: 320px;
    }

    .contact-cta-action .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {

    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-hero {
        height: 50vh;
    }

    .page-hero .hero-title {
        font-size: 2.8rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }
}

/* Sectors List Page */
.sectors-list-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.sector-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.sector-row:last-child {
    margin-bottom: 0;
}

.sector-row.row-reverse {
    flex-direction: row-reverse;
}

.sector-image {
    flex: 1;
}

.sector-text {
    flex: 1;
    padding: 2rem;
}

.sector-icon {
    width: 60px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.sector-icon img {
    max-height: 50px;
}

.sector-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.sector-subtitle {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.sector-desc {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .sector-row,
    .sector-row.row-reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .sector-icon {
        margin: 0 auto 1.5rem;
    }

    .sector-text {
        padding: 0;
    }
}

/* Contact Page */
/* Contact Page Hero (hakkımızda ile aynı layout) */
.contact-hero {
    text-align: left;
    position: relative;
    background-image: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(57, 56, 129, 0.18) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(65, 90, 119, 0.25) 0, transparent 55%),
        linear-gradient(135deg, #060e15 0%, #0d1b2a 40%, #1b263b 100%);
    overflow: hidden;
}

.contact-hero .overlay {
    background: linear-gradient(120deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.85) 40%, rgba(13, 27, 42, 0.4) 100%);
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-hero-text {
    max-width: 650px;
}

.contact-hero .hero-title {
    font-size: 3.6rem;
    margin-bottom: 1.4rem;
}

.contact-hero .hero-desc {
    max-width: 580px;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-hero-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.contact-hero-quick .quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.contact-hero-quick .quick-link:hover {
    background: var(--gold);
    color: var(--primary-color);
    border-color: var(--gold);
}

.contact-hero-quick .quick-link i {
    font-size: 1.1rem;
    color: var(--gold);
}

.contact-hero-quick .quick-link:hover i {
    color: var(--primary-color);
}

.contact-hero-badge {
    flex-shrink: 0;
}

.contact-hero-badge-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background:
        conic-gradient(from 200deg, rgba(57, 56, 129, 0.6), rgba(13, 27, 42, 0.3), rgba(65, 90, 119, 0.4), rgba(57, 56, 129, 0.8)),
        radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.25), transparent 60%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: floatBadge 9s ease-in-out infinite alternate, rotateBadge 22s linear infinite;
}

.contact-hero-badge-inner::before {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    opacity: 0.8;
}

.contact-hero-badge-inner .badge-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.contact-section {
    padding: 8rem 0;
    background: #f9fafb;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.contact-card {
    opacity: 0;
    transform: translateY(40px);
    animation: contactCardIn 0.8s ease forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes contactCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form */
/* Contact cards - minimal, clean, professional */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid #eaecef;
    border-radius: 6px;
}

.form-header .section-subtitle {
    padding-left: 0;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.form-header .section-subtitle::before {
    display: none;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 0.25rem;
    border-radius: 4px;
}

.form-feedback {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
    animation: formFeedbackIn 0.35s ease-out;
}
.form-feedback-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.1rem;
}
.form-feedback-body {
    flex: 1;
    min-width: 0;
}
.form-feedback-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.form-feedback-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.form-feedback--success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.35);
    color: #166534;
}
.form-feedback--success .form-feedback-icon {
    color: #16a34a;
}
.form-feedback--error {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}
.form-feedback--error .form-feedback-icon {
    color: #dc2626;
}
@keyframes formFeedbackIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info - minimal list style */
.contact-info-card .section-subtitle {
    padding-left: 0;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.contact-info-card .section-subtitle::before {
    display: none;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem;
    border: 1px solid #eaecef;
    border-radius: 6px;
}

.info-card h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-intro {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.info-card > p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.info-list {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item .details h3 {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .details p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.info-link:hover::after {
    transform: scaleX(1);
}

.info-link:hover {
    color: var(--gold);
}

.map-wrapper {
    width: 100%;
    height: 340px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
    .contact-hero {
        text-align: center;
    }

    .contact-hero-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-hero-text {
        max-width: 100%;
    }

    .contact-hero .hero-title {
        font-size: 2.6rem;
    }

    .contact-hero-quick {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-hero-quick .quick-link {
        flex: 0 1 auto;
        max-width: none;
    }

    .contact-hero-badge {
        display: flex;
        justify-content: center;
    }

    .contact-hero-badge-inner {
        width: 200px;
        height: 200px;
        padding: 1.5rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-card,
    .info-card {
        padding: 2rem;
    }
}

/* ========================================
   SECTOR DETAIL PAGE STYLES
   ======================================== */

/* Sector Hero – daha uzun alan, resim aşağıya doğru daha fazla görünsün */
.sector-hero {
    height: 88vh;
    min-height: 680px;
    max-height: 1000px;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sector-hero .overlay {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.7) 50%, rgba(13, 27, 42, 0.4) 100%);
}

.sector-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: visible;
}

.sector-hero-content {
    flex: 1;
    max-width: 620px;
    overflow: visible;
}

.sector-hero-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sector-hero-logo {
    width: 165px;
    height: 165px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 0 2px rgba(57, 56, 129, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--transition), box-shadow var(--transition);
}

.sector-hero-logo:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 24px rgba(57, 56, 129, 0.15);
}

.sector-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
    transition: filter var(--transition);
}

.sector-hero-logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.sector-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow: visible;
}

.sector-hero-tags .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    background: rgba(13, 27, 42, 0.5);
    border: 1px solid rgba(57, 56, 129, 0.45);
    border-radius: 999px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(57, 56, 129, 0.1);
    position: relative;
    transition: background var(--transition), border-color var(--transition), transform 0.2s ease;
}

.sector-hero-tags .tag:hover {
    background: rgba(13, 27, 42, 0.65);
    border-color: rgba(57, 56, 129, 0.65);
    transform: translateY(-1px);
}

.sector-hero .hero-title {
    font-size: 3.25rem;
    margin-bottom: 0.75rem;
}

.sector-hero .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.sector-hero .btn,
.sector-hero .btn-outline {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
}

/* 4-column sector features grid (e.g. TÜVSÜD branches) */
.sector-features-four {
    grid-template-columns: repeat(4, 1fr);
}

/* Sector About Section */
.sector-about-section {
    background: var(--white);
}

.sector-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sector-about-grid.sector-about-simple {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.sector-about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sector-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.sector-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sector-stat-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.sector-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sector-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.sector-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Sector Values Section */
.sector-values-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: var(--white);
}

.sector-values-section .section-title h2 {
    color: var(--white);
}

.sector-values-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.sector-values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.sector-values-grid.sector-values-four {
    grid-template-columns: repeat(4, 1fr);
}

.sector-value-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.sector-value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.sector-value-item .value-icon {
    width: 60px;
    height: 60px;
    background: rgba(57, 56, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}

.sector-value-item:hover .value-icon {
    background: var(--gold);
    color: var(--primary-color);
}

.sector-value-item h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Sector Features Section */
.sector-features-section {
    background: var(--bg-light);
}

.sector-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.sector-feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.sector-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sector-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.sector-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), #393881);
    transform: scale(1.1);
}

.sector-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sector-feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Innovations Section */
.sector-innovations-section {
    background: var(--white);
}

.innovations-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovations-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.innovations-list {
    list-style: none;
}

.innovations-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.innovations-list li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.innovations-quote {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-box {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.quote-box i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

.quote-box p {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Sector Services Section */
.sector-services-section {
    background: var(--bg-light);
}

.sector-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.sector-service-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.sector-service-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.sector-service-item .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 27, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.sector-service-item:hover .service-icon {
    background: var(--gold);
    color: var(--white);
}

.sector-service-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
}

/* Sector Stations Section */
.sector-stations-section {
    background: var(--white);
}

.sector-stations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.station-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.station-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.station-card .station-icon {
    width: 50px;
    height: 50px;
    background: rgba(57, 56, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--gold);
}

.station-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.station-card .station-count {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sector Detail Page - Simple Layout (sector.php) */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.sector-detail {
    padding: 5rem 0;
    background: var(--bg-light);
}

.sector-detail .content {
    margin-bottom: 2rem;
}

.sector-detail .content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.sector-detail .content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sector-detail .content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.sector-detail .content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.7;
}

.sector-detail .sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sector-detail .sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.sector-detail .sidebar p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.sector-detail .sidebar strong {
    color: var(--primary-color);
    font-weight: 600;
}

.sector-detail .sidebar .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive for Hero (sector.php) */
@media (max-width: 900px) {
    .hero {
        min-height: 400px;
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.9rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 350px;
        padding: 90px 0 50px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 300px;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* Responsive for Sector Pages */
@media (max-width: 1200px) {
    .sector-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sector-values-grid.sector-values-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-services-grid,
    .sector-stations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sector-about-grid {
        gap: 4rem;
    }

    .sector-hero-logo {
        width: 155px;
        height: 155px;
        padding: 1.5rem;
    }

    .sector-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    /* Sector Hero */
    .sector-hero {
        height: auto;
        min-height: 420px;
        max-height: none;
        padding: 100px 0 3rem;
        display: flex;
        align-items: center;
    }

    .sector-hero-inner {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0;
        width: 100%;
    }

    .sector-hero-content {
        max-width: 100%;
        text-align: center;
        padding-top: 0.5rem;
    }

    /* Mobilde hero logosu gizlenir, sadece tag / başlık / açıklama / buton */
    .sector-hero-logo-wrap {
        display: none !important;
    }

    .sector-hero-tags {
        justify-content: center;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .sector-hero-tags .tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .sector-hero .hero-title {
        font-size: 2.6rem;
        margin-bottom: 0.9rem;
        line-height: 1.2;
    }

    .sector-hero .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .sector-hero .btn {
        margin: 0 auto;
    }

    /* Sector About */
    .sector-about-section {
        padding: 5rem 0;
    }

    .sector-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sector-about-content {
        text-align: center;
    }

    .sector-about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .sector-about-content p {
        font-size: 1.05rem;
        margin-bottom: 1.15rem;
    }

    .sector-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sector-stat-card {
        padding: 1.75rem 1.25rem;
    }

    .sector-stat-card .stat-number {
        font-size: 2.2rem;
    }

    .sector-stat-card .stat-label {
        font-size: 0.9rem;
    }

    /* Sector Values */
    .sector-values-section {
        padding: 5rem 0;
    }

    .sector-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sector-values-grid.sector-values-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-value-item {
        padding: 1.75rem 1.25rem;
    }

    .sector-value-item .value-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
    }

    .sector-value-item h4 {
        font-size: 0.9rem;
    }

    /* Sector Features */
    .sector-features-section {
        padding: 5rem 0;
    }

    .sector-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sector-feature-card {
        padding: 2.5rem 2rem;
    }

    .sector-feature-card .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }

    .sector-feature-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.9rem;
    }

    .sector-feature-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Innovations */
    .sector-innovations-section {
        padding: 5rem 0;
    }

    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .innovations-content {
        text-align: center;
    }

    .innovations-content h2 {
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }

    .innovations-list {
        text-align: left;
        max-width: 100%;
    }

    .innovations-list li {
        font-size: 1rem;
        margin-bottom: 1.15rem;
        padding-left: 0.5rem;
    }

    .innovations-list li i {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }

    .quote-box {
        padding: 2.5rem 2rem;
        margin-top: 1rem;
    }

    .quote-box i {
        font-size: 2.2rem;
        margin-bottom: 0.9rem;
    }

    .quote-box p {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    /* Sector Services */
    .sector-services-section {
        padding: 5rem 0;
    }

    .sector-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sector-service-item {
        padding: 1.75rem 1.25rem;
    }

    .sector-service-item .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 0.9rem;
    }

    .sector-service-item h4 {
        font-size: 0.95rem;
    }

    /* Sector Stations */
    .sector-stations-section {
        padding: 5rem 0;
    }

    .sector-stations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .station-card {
        padding: 1.75rem 1.5rem;
    }

    .station-card .station-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .station-card h4 {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }

    .station-card .station-count {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }

    /* Sector Detail Simple Page */
    .sector-detail {
        padding: 4rem 0;
    }

    .sector-detail .grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .sector-detail .content {
        order: 1;
    }

    .sector-detail .sidebar {
        order: 2;
        position: static;
        top: auto;
    }

    .sector-detail .content h2 {
        font-size: 1.75rem;
    }

    .sector-detail .content h3 {
        font-size: 1.3rem;
    }

    .sector-detail .content ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 600px) {
    /* Sector Hero */
    .sector-hero {
        min-height: 360px;
        padding: 90px 0 2.5rem;
    }

    .sector-hero-inner {
        gap: 2rem;
        padding: 0;
        justify-content: center;
    }

    .sector-hero-tags {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .sector-hero-tags .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .sector-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .sector-hero .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .sector-hero .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Sector About */
    .sector-about-section {
        padding: 4rem 0;
    }

    .sector-about-grid {
        gap: 2.5rem;
    }

    .sector-about-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .sector-about-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .sector-about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-stat-card {
        padding: 1.5rem 1.25rem;
    }

    .sector-stat-card .stat-number {
        font-size: 2rem;
    }

    .sector-stat-card .stat-label {
        font-size: 0.85rem;
    }

    /* Sector Values */
    .sector-values-section {
        padding: 4rem 0;
    }

    .sector-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .sector-value-item {
        padding: 1.5rem 1.25rem;
    }

    .sector-value-item .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .sector-value-item h4 {
        font-size: 0.85rem;
    }

    /* Sector Features */
    .sector-features-section {
        padding: 4rem 0;
    }

    .sector-features-grid {
        gap: 1.75rem;
    }

    .sector-feature-card {
        padding: 2rem 1.75rem;
    }

    .sector-feature-card .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .sector-feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .sector-feature-card p {
        font-size: 0.95rem;
    }

    /* Innovations */
    .sector-innovations-section {
        padding: 4rem 0;
    }

    .innovations-grid {
        gap: 2rem;
    }

    .innovations-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .innovations-list li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .innovations-list li i {
        font-size: 1rem;
        margin-right: 0.65rem;
    }

    .quote-box {
        padding: 2rem 1.75rem;
    }

    .quote-box i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .quote-box p {
        font-size: 1.15rem;
    }

    /* Sector Services */
    .sector-services-section {
        padding: 4rem 0;
    }

    .sector-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-service-item {
        padding: 1.5rem 1.25rem;
    }

    .sector-service-item .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .sector-service-item h4 {
        font-size: 0.9rem;
    }

    /* Sector Stations */
    .sector-stations-section {
        padding: 4rem 0;
    }

    .sector-stations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .station-card {
        padding: 1.5rem 1.25rem;
    }

    .station-card .station-icon {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .station-card h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .station-card .station-count {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* Sector Detail Simple Page */
    .sector-detail {
        padding: 3.5rem 0;
    }

    .sector-detail .content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .sector-detail .content h3 {
        font-size: 1.2rem;
        margin-top: 1.75rem;
    }

    .sector-detail .content p {
        font-size: 1rem;
    }

    .sector-detail .content ul {
        margin-left: 1.25rem;
    }

    .sector-detail .content ul li {
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
    }

    .sector-detail .sidebar {
        padding: 1.75rem 1.5rem;
    }

    .sector-detail .sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .sector-detail .sidebar p {
        font-size: 0.95rem;
    }
}

/* ========================================
   WELCOME SECTION STYLES
   ======================================== */

.welcome-section {
    background: var(--white);
    position: relative;
    padding: 8rem 0;
}

.welcome-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    position: relative;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.welcome-desc {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-btn {
    margin-top: 1rem;
}

/* ========================================
   COMPACT CONTACT SECTION STYLES
   ======================================== */

.compact-contact-section {
    background: var(--white);
    padding: 6rem 0;
}

.compact-contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.compact-contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.compact-contact-header h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.compact-contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.compact-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.compact-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-item:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, #393881 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(57, 56, 129, 0.3);
}

.contact-info-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--gold);
}

.compact-contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(57, 56, 129, 0.1);
}

.compact-form .form-group {
    margin-bottom: 1.5rem;
}

.compact-form input,
.compact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
    font-family: inherit;
}

.compact-form input:focus,
.compact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(57, 56, 129, 0.1);
}

.compact-form input::placeholder,
.compact-form textarea::placeholder {
    color: #9ca3af;
}

.compact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.compact-form-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    min-height: 48px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-desc {
        font-size: 1rem;
    }

    .compact-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .compact-contact-header h3 {
        font-size: 2rem;
    }

    .compact-contact-form {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .welcome-section {
        padding: 5rem 0;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .compact-contact-section {
        padding: 4rem 0;
    }

    .compact-contact-header {
        margin-bottom: 3rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-info-icon {
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   KAPSAMLI RESPONSIVE TASARIM
   ======================================== */

/* Genel Responsive Kurallar */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 25px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 6rem 0;
    }

    .section-title {
        margin-bottom: 4rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

/* Tablet ve Orta Ekranlar */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-title {
        margin-bottom: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-section {
        height: 90vh;
        min-height: 600px;
    }

    .hero-content-layer {
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .hero-accent {
        display: none;
    }

    .hero-text {
        max-width: 100%;
        padding: 80px 0 100px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding: 0.5rem 1rem;
        background: rgba(13, 27, 42, 0.6);
        border-color: rgba(57, 56, 129, 0.5);
        color: var(--accent-color);
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.25rem;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-nav-row {
        gap: 0.75rem;
        padding: 0 10px;
    }

    .nav-logo-box {
        width: 95px;
        height: 58px;
        padding: 10px;
        border-radius: 10px;
    }

    /* Page Hero */
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .page-hero .hero-title {
        font-size: 3rem;
    }

    /* About Hero - tablette de içeriğe göre sığsın */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 3rem;
        display: flex;
        align-items: center;
    }

    .about-hero-inner,
    .contact-hero-inner {
        gap: 2rem;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2.75rem;
    }

    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 200px;
        height: 200px;
    }

    /* Grid Systems */
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Contact */
    .contact-hero .hero-title {
        font-size: 3rem;
    }

    .contact-hero-quick {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Sector Pages */
    .sector-hero {
        height: auto;
        min-height: 400px;
        max-height: none;
        padding: 95px 0 2.5rem;
    }

    .sector-hero-inner {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        justify-content: center;
    }

    .sector-hero-content {
        text-align: center;
    }

    .sector-hero .hero-title {
        font-size: 2.75rem;
    }

    .sector-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sector-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sector-features-grid,
    .sector-features-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .sector-services-grid,
    .sector-stations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer */
    footer {
        padding: 5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2.5rem;
        margin-bottom: 4rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-col:first-child .footer-logo {
        justify-content: center;
    }

    .footer-col:first-child p {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 1.25rem;
        font-size: 1rem;
    }
}

/* Mobil ve Küçük Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Header */
    header {
        padding: 1rem 0;
    }

    header.scrolled {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 50px;
    }

    header.scrolled .logo img {
        height: 45px;
    }

    /* Navigation */
    .nav-menu {
        width: 85%;
        padding: 4rem 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding-bottom: 1rem;
    }

    /* Hero Section */
    .hero-section {
        height: 85vh;
        min-height: 550px;
        display: flex;
        align-items: center;
    }

    .hero-bg {
        background-position: center center;
        background-size: cover;
    }

    .overlay {
        background: linear-gradient(to bottom, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.7) 50%, rgba(13, 27, 42, 0.6) 100%);
    }

    .hero-content-layer {
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .hero-text {
        max-width: 100%;
        padding-top: 70px;
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        padding: 0.45rem 1rem;
        background: rgba(13, 27, 42, 0.6);
        border-color: rgba(57, 56, 129, 0.5);
        color: var(--accent-color);
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: auto;
        margin: 0 auto;
        display: inline-flex;
    }

    .btn-outline {
        padding: 0.95rem 2rem;
        font-size: 0.9rem;
    }

    /* Hero Nav */
    .hero-nav-container {
        padding: 1.25rem 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    }

    .hero-nav-row {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .nav-logo-box {
        width: 78px;
        height: 48px;
        padding: 8px;
        border-radius: 10px;
    }

    .hero-nav-item {
        opacity: 0.75;
    }

    .hero-nav-item:hover,
    .hero-nav-item.active {
        opacity: 1;
        transform: translateY(-3px);
    }

    .hero-nav-item.active .nav-logo-box {
        box-shadow: 0 6px 20px rgba(57, 56, 129, 0.3), 0 0 0 2px var(--gold);
        border-color: var(--gold);
    }

    /* Sections */
    section {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Page Hero */
    .page-hero {
        height: 45vh;
        min-height: 350px;
        padding: 100px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-hero .overlay {
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.75) 100%);
    }

    .page-hero .hero-text,
    .page-hero .contact-hero-inner,
    .page-hero .about-hero-inner {
        text-align: center;
        padding: 0 20px;
    }

    .page-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .page-hero .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 15px;
    }

    .page-hero .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    /* Cards */
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card {
        margin-bottom: 1.5rem;
    }

    .card-content {
        padding: 2rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 5rem 0;
    }

    .welcome-title {
        font-size: 2.2rem;
    }

    .welcome-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* About Hero - mobilde içeriğe göre yükseklik, tam sığsın */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        display: flex;
        align-items: center;
        min-height: auto;
        height: auto;
        padding: 90px 0 2.5rem;
        padding-top: max(90px, env(safe-area-inset-top));
    }

    .about-hero .overlay,
    .contact-hero .overlay {
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.85) 100%);
    }

    .about-hero .container,
    .contact-hero .container {
        display: flex;
        align-items: center;
        min-height: 0;
    }

    .about-hero-inner,
    .contact-hero-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 20px;
        width: 100%;
    }

    .about-hero-text,
    .contact-hero-text {
        max-width: 100%;
    }

    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .about-hero .hero-desc,
    .contact-hero .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 0;
    }

    .about-hero-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-hero-meta .meta-item {
        min-width: auto;
        flex: 1 1 calc(50% - 0.5rem);
        padding: 0.75rem 1rem;
    }

    .about-hero-badge,
    .contact-hero-badge {
        display: flex;
        justify-content: center;
    }

    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 160px;
        height: 160px;
        padding: 1.25rem;
    }

    .about-hero-badge-inner .badge-title {
        font-size: 1rem;
    }

    .about-hero-badge-inner .badge-subtitle {
        font-size: 0.85rem;
    }

    .contact-hero-quick {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .contact-hero-quick .quick-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-hero .hero-desc {
        margin-bottom: 1rem;
    }

    /* About Grid */
    .about-grid {
        gap: 2.5rem;
    }

    .image-wrapper {
        border-radius: 16px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: -15px;
        left: 15px;
        padding: 1.5rem;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }

    /* Values Section */
    .values-section {
        padding: 5rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2.5rem 2rem;
    }

    .value-card .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .value-card h3 {
        font-size: 1.6rem;
    }

    /* Stats Section */
    .stats-section {
        padding: 5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Companies Section */
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .company-card {
        padding: 1.5rem 1.25rem;
    }

    .company-logo {
        width: 100px;
        height: 60px;
        margin-bottom: 1rem;
    }

    /* Contact CTA */
    .contact-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .contact-cta-action {
        width: 100%;
    }

    .contact-cta-action .btn {
        width: 100%;
        justify-content: center;
    }

    /* Contact Section */
    .contact-section {
        padding: 5rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 1.4rem;
    }

    .info-card h2 {
        font-size: 1.4rem;
    }

    .map-wrapper {
        height: 280px;
    }

    /* Compact Contact */
    .compact-contact-section {
        padding: 5rem 0;
    }

    .compact-contact-header {
        margin-bottom: 3rem;
    }

    .compact-contact-header h3 {
        font-size: 2rem;
    }

    .compact-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .compact-contact-form {
        padding: 2rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.25rem;
    }

    .contact-info-icon {
        margin-bottom: 0.75rem;
    }

    /* Sectors List */
    .sectors-list-section {
        padding: 5rem 0;
    }

    .sector-row,
    .sector-row.row-reverse {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .sector-icon {
        margin: 0 auto 1.5rem;
    }

    .sector-text {
        padding: 0;
    }

    .sector-title {
        font-size: 2rem;
    }

    .sector-desc {
        font-size: 1rem;
    }

    /* Sector Detail Pages */
    .sector-hero {
        height: auto;
        min-height: 380px;
        padding: 90px 0 2.5rem;
    }

    .sector-hero .overlay {
        background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.8) 100%);
    }

    .sector-hero-inner {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .sector-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .sector-hero-logo-wrap {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .sector-hero-logo {
        width: 150px;
        height: 150px;
        padding: 1.5rem;
    }

    .sector-hero-tags {
        justify-content: center;
        gap: 0.5rem;
    }

    .sector-hero-tags .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .sector-hero .hero-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .sector-hero .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        padding: 0;
    }

    .sector-about-section {
        padding: 5rem 0;
    }

    .sector-about-grid {
        gap: 2.5rem;
    }

    .sector-about-content h2 {
        font-size: 2rem;
    }

    .sector-about-content p {
        font-size: 1rem;
    }

    .sector-about-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sector-stat-card {
        padding: 1.5rem 1.25rem;
    }

    .sector-stat-card .stat-number {
        font-size: 2rem;
    }

    .sector-values-section {
        padding: 5rem 0;
    }

    .sector-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sector-value-item {
        padding: 1.5rem 1rem;
    }

    .sector-value-item .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .sector-value-item h4 {
        font-size: 0.85rem;
    }

    .sector-features-section {
        padding: 5rem 0;
    }

    .sector-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sector-feature-card {
        padding: 2.5rem 2rem;
    }

    .sector-feature-card .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .sector-feature-card h3 {
        font-size: 1.3rem;
    }

    .sector-services-grid,
    .sector-stations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .sector-service-item,
    .station-card {
        padding: 1.5rem 1.25rem;
    }

    .sector-service-item .service-icon,
    .station-card .station-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .innovations-grid {
        gap: 2.5rem;
    }

    .innovations-content h2 {
        font-size: 2rem;
    }

    .innovations-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .quote-box {
        padding: 2.5rem 2rem;
    }

    .quote-box p {
        font-size: 1.2rem;
    }

    /* Footer */
    footer {
        padding: 4rem 0 2rem;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col:first-child {
        grid-column: auto;
        max-width: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-col:first-child .footer-logo {
        justify-content: center;
    }

    .footer-col:first-child p {
        text-align: center;
        margin-bottom: 0;
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .footer-logo img {
        height: 52px;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        letter-spacing: 1.2px;
        margin-bottom: 1rem;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer-col ul li {
        justify-content: center;
        align-items: center;
        margin-bottom: 0.75rem;
        gap: 0.65rem;
    }

    .footer-col ul li:last-child {
        margin-bottom: 0;
    }

    .footer-col ul li a {
        padding: 0.5rem 0.75rem;
        margin: 0 -0.75rem;
        display: inline-block;
        border-radius: 6px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .footer-col ul li a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .footer-col ul li span {
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-col .icon-box {
        margin-top: 0;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .copyright p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Sectors Mega Menu - 768px layout (desktop dropdown when narrow) */
    .sectors-mega-menu .sectors-mega-inner {
        padding: 1.5rem 1.25rem;
        margin: 0 1rem;
    }

    .sectors-mega-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .sector-card-image {
        min-height: 64px;
        width: 80px;
    }

    .sector-card-image img {
        max-height: 48px;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-text {
        padding-top: 60px;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 1px;
        background: rgba(13, 27, 42, 0.6);
        border-color: rgba(57, 56, 129, 0.5);
        color: var(--accent-color);
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.85rem;
    }

    .btn-outline {
        padding: 0.85rem 1.75rem;
        font-size: 0.85rem;
    }

    /* Hero Nav */
    .hero-nav-container {
        padding: 1rem 0;
    }

    .hero-nav-row {
        gap: 0.4rem;
        padding: 0 5px;
    }

    .nav-logo-box {
        width: 66px;
        height: 44px;
        padding: 6px;
        border-radius: 8px;
    }

    .hero-nav-item.active .nav-logo-box {
        border-width: 2px;
    }

    /* Page Hero */
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero .hero-title {
        font-size: 2rem;
    }

    /* About Hero - içeriğe göre yükseklik, taşma olmasın */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        height: auto;
        min-height: auto;
        padding: 85px 0 2rem;
    }

    .about-hero-inner,
    .contact-hero-inner {
        gap: 1.25rem;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 1.85rem;
        margin-bottom: 0.6rem;
    }

    .about-hero .hero-desc,
    .contact-hero .hero-desc {
        font-size: 0.9rem;
    }

    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 140px;
        height: 140px;
        padding: 1rem;
    }

    .badge-logo {
        max-width: 65%;
        max-height: 65%;
    }

    .about-hero-meta .meta-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Companies */
    .companies-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }

    .map-wrapper {
        height: 250px;
    }

    /* Compact Contact */
    .compact-contact-header h3 {
        font-size: 1.75rem;
    }

    .compact-contact-form {
        padding: 1.5rem;
    }

    /* Sector Pages */
    .sector-hero .hero-title {
        font-size: 2rem;
    }

    .sector-hero-logo {
        width: 140px;
        height: 140px;
        padding: 1.25rem;
    }

    .sector-hero-tags .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .sector-hero .hero-title {
        font-size: 1.9rem;
    }

    .sector-hero .hero-desc {
        font-size: 0.9rem;
    }

    .sector-about-content h2 {
        font-size: 1.6rem;
    }

    .sector-about-content p {
        font-size: 0.95rem;
    }

    .sector-stat-card .stat-number {
        font-size: 1.8rem;
    }

    .sector-feature-card {
        padding: 1.75rem 1.5rem;
    }

    .sector-feature-card .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .sector-feature-card h3 {
        font-size: 1.15rem;
    }

    .innovations-content h2 {
        font-size: 1.6rem;
    }

    .quote-box p {
        font-size: 1.05rem;
    }

    .sector-values-grid,
    .sector-services-grid,
    .sector-stations-grid,
    .sector-features-four {
        grid-template-columns: 1fr;
    }

    .contact-cta-box {
        text-align: center;
        padding: 2rem 1.25rem;
    }

    /* Footer */
    footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-col:first-child {
        padding-bottom: 1.75rem;
    }

    .footer-col h4 {
        font-size: 0.85rem;
    }
}

/* Çok Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .sector-hero {
        min-height: 320px;
        padding: 85px 0 2rem;
    }

    .sector-hero .hero-title {
        font-size: 1.75rem;
    }

    .sector-hero .hero-desc {
        font-size: 0.95rem;
    }

    .contact-cta-box {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 450px;
        height: 75vh;
    }

    .hero-text {
        padding-top: 50px;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        background: rgba(13, 27, 42, 0.6);
        border-color: rgba(57, 56, 129, 0.5);
        color: var(--accent-color);
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.9rem;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-nav-container {
        padding: 0.75rem 0;
    }

    .nav-logo-box {
        width: 58px;
        height: 40px;
        padding: 5px;
        border-radius: 8px;
    }

    .page-hero {
        min-height: 280px;
        padding: 80px 0 40px;
    }

    /* About Hero - mobilde tam sığsın, sabit yükseklik yok */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 1.75rem;
        padding-top: max(80px, env(safe-area-inset-top));
    }

    .page-hero .hero-text,
    .page-hero .contact-hero-inner,
    .page-hero .about-hero-inner {
        padding: 0 15px;
    }

    .about-hero-inner,
    .contact-hero-inner {
        gap: 1rem;
    }

    .page-hero .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .page-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .page-hero .hero-desc {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .about-hero .hero-desc,
    .contact-hero .hero-desc {
        font-size: 0.85rem;
        padding: 0 5px;
    }

    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 120px;
        height: 120px;
        padding: 0.85rem;
    }

    .badge-logo {
        max-width: 60%;
        max-height: 60%;
    }

    .contact-hero .hero-title {
        font-size: 1.75rem;
    }

    .contact-hero-quick .quick-link {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }

    .nav-logo-box {
        width: 56px;
        height: 36px;
        padding: 5px;
    }

    .about-hero-badge-inner {
        width: 130px;
        height: 130px;
    }

    .contact-form-wrapper,
    .contact-info-card,
    .compact-contact-form {
        padding: 1.25rem;
    }

    .sector-hero-logo {
        width: 120px;
        height: 120px;
    }
}

/* ========================================
   EK RESPONSIVE: KÜÇÜK EKRAN & FOOTER / MODAL
   ======================================== */

/* Footer copyright: küçük ekranlarda alt alta ve ortada */
@media (max-width: 576px) {
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .footer-col:first-child {
        padding-bottom: 1.5rem;
    }

    .footer-logo img {
        height: 48px;
    }

    .footer-col h4 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .footer-col p {
        font-size: 0.9rem;
    }

    .copyright {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.25rem;
        padding-top: 1.5rem;
    }

    .copyright p {
        margin: 0;
        order: 1;
        font-size: 0.8rem;
    }

    .footer-dev-info {
        order: 2;
        justify-content: center;
    }

    .footer-mor-logo-btn img {
        height: 28px;
    }
}

/* Mor Teknoloji modal: mobilde daha küçük padding ve yazı */
@media (max-width: 480px) {
    footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-col:first-child {
        padding-bottom: 1.25rem;
    }

    .footer-logo img {
        height: 44px;
    }

    .footer-col p {
        font-size: 0.875rem;
    }

    .footer-col ul li span {
        font-size: 0.85rem;
    }

    .copyright {
        padding-top: 1.25rem;
    }

    .copyright p {
        font-size: 0.75rem;
    }

    .footer-mor-logo-btn img {
        height: 26px;
    }

    .mor-modal-overlay {
        padding: 12px;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    .mor-modal {
        padding: 1.75rem 1.25rem;
        max-width: 100%;
    }
    .mor-modal-title {
        font-size: 1.15rem;
    }
    .mor-modal-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .mor-modal-actions {
        flex-direction: column;
        width: 100%;
    }
    .mor-modal-btn {
        width: 100%;
        padding: 0.85rem 1.25rem;
        min-height: 44px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    .hero-title {
        font-size: 1.45rem;
    }
    .hero-desc {
        font-size: 0.8rem;
    }
    .hero-subtitle {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    .nav-logo-box {
        width: 50px;
        height: 34px;
        padding: 4px;
    }
    .hero-nav-row {
        gap: 0.35rem;
    }
    .welcome-title {
        font-size: 1.5rem;
    }
    .compact-contact-header h3 {
        font-size: 1.5rem;
    }
    .footer-logo img {
        height: 42px;
    }
    .footer-col h4 {
        font-size: 0.75rem;
    }
    .footer-col p,
    .footer-col ul li span {
        font-size: 0.85rem;
    }
    .copyright p {
        font-size: 0.75rem;
    }
    /* Sector Hero - çok küçük ekran */
    .sector-hero {
        min-height: 300px;
        padding: 80px 0 1.5rem;
    }

    .sector-hero .hero-title {
        font-size: 1.5rem;
    }

    .sector-hero .hero-desc {
        font-size: 0.85rem;
    }

    .sector-hero-logo {
        width: 110px;
        height: 110px;
        padding: 1rem;
    }

    /* About Hero - çok küçük ekran */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        padding: 75px 0 1.5rem;
    }
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 1.45rem;
    }
    .about-hero .hero-desc,
    .contact-hero .hero-desc {
        font-size: 0.8rem;
    }
    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 100px;
        height: 100px;
        padding: 0.65rem;
    }
}

/* 320px ve altı: minimum okunabilirlik */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.35rem;
    }
    .hero-section {
        min-height: 400px;
        height: 70vh;
    }
    .hero-title {
        font-size: 1.35rem;
    }
    .hero-desc {
        font-size: 0.75rem;
    }
    .sector-hero {
        min-height: 280px;
        padding: 75px 0 1.25rem;
    }
    .sector-hero .hero-title {
        font-size: 1.35rem;
    }
    .sector-hero .hero-desc {
        font-size: 0.8rem;
    }
    .sector-hero-logo {
        width: 100px;
        height: 100px;
        padding: 0.85rem;
    }
    .sector-hero-tags .tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }
    .nav-logo-box {
        width: 46px;
        height: 32px;
    }
    .nav-menu {
        width: 90%;
        max-width: 300px;
    }
    .btn,
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        min-height: 44px;
    }
    .compact-contact-form,
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1rem;
    }
    footer {
        padding: 2rem 0 1rem;
    }
    .footer-logo img {
        height: 40px;
    }
    .footer-col h4 {
        font-size: 0.7rem;
    }
    .copyright p {
        font-size: 0.7rem;
    }
    /* About Hero - 320px */
    .page-hero.about-hero,
    .page-hero.contact-hero {
        padding: 70px 0 1.25rem;
    }
    .about-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 1.3rem;
    }
    .about-hero .hero-desc,
    .contact-hero .hero-desc {
        font-size: 0.75rem;
    }
    .about-hero-badge-inner,
    .contact-hero-badge-inner {
        width: 90px;
        height: 90px;
        padding: 0.5rem;
    }
}

/* Landscape: mobil hero nav daha kompakt */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    .hero-text {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-nav-container {
        padding: 0.75rem 0;
    }
    .nav-logo-box {
        width: 64px;
        height: 40px;
        padding: 6px;
    }
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    .page-hero.about-hero,
    .page-hero.contact-hero {
        height: auto;
        min-height: auto;
        padding: 70px 0 2rem;
    }
    .sector-hero {
        height: auto;
        min-height: auto;
        padding: 85px 0 2rem;
    }
    .sector-hero-inner {
        flex-direction: column;
        justify-content: center;
    }
    .sector-hero-logo-wrap {
        display: none !important;
    }
}

/* ========================================
   Page Loader - Professional
   ======================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s step-end;
    pointer-events: none;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s step-end 0.7s;
}

.loader-backdrop {
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    overflow: hidden;
    border-top: 1px solid rgba(57, 56, 129, 0.4);
}

.loader-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--primary-light) 0%, var(--primary-color) 35%, #081118 100%);
    opacity: 1;
}

.loader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: loaderGridFade 2s ease-out 0.5s forwards;
    opacity: 0;
}

.loader-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.loader-logo-frame {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: loaderLogoIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
    opacity: 0;
    transform: scale(0.92);
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    animation: loaderBarIn 0.6s ease-out 0.6s forwards;
    opacity: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.loader-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(224, 225, 221, 0.9));
    box-shadow: 0 0 12px rgba(57, 56, 129, 0.5);
    animation: loaderBarFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s infinite;
}

@keyframes loaderGridFade {
    to { opacity: 1; }
}

@keyframes loaderLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderBarIn {
    to { opacity: 1; }
}

@keyframes loaderBarFill {
    0% { width: 0; }
    45% { width: 100%; }
    55% { width: 100%; }
    100% { width: 0; }
}

body.page-loading {
    overflow: hidden;
}

body:not(.page-loading) .page-loader {
    pointer-events: none;
}

/* Print Styles */
@media print {
    header,
    footer,
    .btn,
    .hero-nav-container,
    .page-loader {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}