* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tüm sayfalardan kaydırma çubuğunu (scrollbar) gizleme */
::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
html {
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none; /* Firefox */
}

body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
header {
    background-color: #ffffff;
    color: #333;
    padding: 0.2rem 0; /* Bar inceltildi */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    transition: padding 0.35s ease, background 0.35s ease;
}
body.scrolled header {
    padding: 0.1rem 0; /* Kaydırınca daha da ince */
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    box-shadow: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative; /* Logoyu merkeze konumlandırmak için gerekli */
}

/* Logonun yarısı header'da, yarısı banner'da olacak şekilde büyük ve merkezde yapıldı */
.navbar-logo {
    position: absolute;
    left: 50%;
    top: -10px; /* Daha yukarıya konumlandırıldı */
    transform: translateX(-50%); /* Sadece yatay ortala */
    z-index: 5000;
}

.navbar-logo img {
    height: 220px !important; /* 180'den 220'ye çıkarıldı */
    width: auto;
    object-fit: contain;
    transition: height 0.35s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

body.scrolled .navbar-logo {
    transform: translateX(-50%);
}

body.scrolled .navbar-logo img {
    height: 70px !important; /* Kaydırınca biraz daha küçülsün */
}

.logo-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding-left: 0px;
    margin-left: -120px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #111;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: #333;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.social-btn:hover svg {
    transform: scale(1.15);
}

.translation-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: auto;
    margin-right: -160px;
}

.translation-btn {
    transition: transform 0.3s, opacity 0.3s;
}

.translation-btn img {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.translation-btn:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Profil butonu */
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 28px;
    border-radius: 50%;
    background: linear-gradient(160deg, #3a3a3a 0%, #0a0a0a 100%);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.18),
        0 3px 6px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-btn:hover {
    transform: scale(1.12);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.45);
}

.profile-icon {
    position: relative;
    width: 17px;
    height: 17px;
    display: block;
}

/* Kafa */
.profile-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.15);
}

/* Gövde */
.profile-icon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 8px;
    border-radius: 7px 7px 3px 3px;
    background: #ffffff;
    box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.15);
}

.social-icon-main {
    height: 40px;
    width: auto;
}

.logo-social h1 {
    font-size: 1.8rem;
    color: #3498db;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 30px 0 10px;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
body.scrolled .hero {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 4px 0 6px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    animation: slideDownBar 0.4s ease;
}
body.scrolled .hero-spacer {
    display: block;
    height: 60px;
}
.hero-spacer { display: none; }
@keyframes slideDownBar {
    from { transform: translateY(-12px); opacity: 0.4; }
    to { transform: translateY(0); opacity: 1; }
}

.banner-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 8px;
}

.banner-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.banner-dropdown::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 12px;
}

.banner-btn {
    color: #000000;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    display: inline-block;
    -webkit-text-stroke: 0;
    text-shadow: 0 1px 0 #f2f2f2, 0 2px 3px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
}

.banner-btn:hover {
    transform: translateY(-2px) scale(1.06);
    text-shadow: 0 1px 0 #ffffff, 0 3px 5px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.banner-btn:active {
    transform: translateY(1px) scale(1.02);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 200;
}

.banner-dropdown:hover .dropdown-menu,
.banner-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-btn {
    text-decoration: none;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 0;
    background: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.22s ease, opacity 0.25s ease, color 0.2s ease, text-shadow 0.22s ease;
}

.item-icon {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    position: relative;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    display: inline-block;
    overflow: visible;
    color: #111111;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    margin-right: 4px;
    transform: translateY(-6px);
}

.item-icon::before,
.item-icon::after {
    content: none;
}

.icon-about {
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
}

.icon-about::before {
    width: 6px;
    height: 6px;
    left: 5px;
    top: 3px;
    border-radius: 50%;
}

.icon-about::after {
    width: 10px;
    height: 5px;
    left: 3px;
    top: 10px;
    border-radius: 6px 6px 3px 3px;
}

.icon-mission {
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
}

.icon-mission::before {
    width: 11px;
    height: 8px;
    left: 3px;
    top: 4px;
    clip-path: polygon(0 50%, 100% 0, 70% 50%, 100% 100%);
}

.icon-mission::after {
    width: 4px;
    height: 1.6px;
    left: 7px;
    top: 8px;
    transform: rotate(25deg);
}

.icon-services {
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
}

.icon-services::before {
    width: 11px;
    height: 7px;
    left: 3px;
    top: 7px;
    border-radius: 2px;
}

.icon-services::after {
    width: 6px;
    height: 3px;
    left: 6px;
    top: 4px;
    background: transparent;
    border: 1.6px solid #111111;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
}

.icon-docs {
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
}

.icon-docs::before {
    width: 12px;
    height: 10px;
    left: 2px;
    top: 3px;
    background: transparent;
    border: 1.6px solid #111111;
    border-radius: 2px;
}

.icon-docs::after {
    width: 1.6px;
    height: 8px;
    left: 8px;
    top: 4px;
}

.banner-dropdown:hover .dropdown-btn,
.banner-dropdown .dropdown-menu:hover .dropdown-btn {
    opacity: 1;
    transform: translateY(0);
}

.banner-dropdown:hover .dropdown-btn:hover,
.banner-dropdown .dropdown-menu:hover .dropdown-btn:hover {
    transform: translateX(6px) scale(1.03);
    color: #111111;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.banner-dropdown:hover .dropdown-btn:active,
.banner-dropdown .dropdown-menu:hover .dropdown-btn:active {
    transform: translateX(2px) scale(0.98);
}

.dropdown-btn:nth-child(1) {
    transition-delay: 0.03s;
}

.dropdown-btn:nth-child(2) {
    transition-delay: 0.08s;
}

.dropdown-btn:nth-child(3) {
    transition-delay: 0.13s;
}

.dropdown-btn:nth-child(4) {
    transition-delay: 0.18s;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #666;
}

/* ==================== Hizmetlerimiz Section ==================== */
.services-section {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.services-bg {
    background: transparent;
    border-radius: 0;
    padding: 30px 40px 60px;
    text-align: center;
    box-shadow: none;
}

.services-title {
    color: #111111;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.services-subtitle {
    color: #111111;
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 0;
    max-width: 980px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.services-grid .service-card:nth-child(1) { grid-column: 1 / span 2; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / span 2; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / span 2; }
.services-grid .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    transform: rotate(45deg);
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(45, 143, 224, 0.18);
    transition: box-shadow 0.45s ease;
    cursor: pointer;
}

/* Alt yarıdan çıkan lav ışığı (kart 45° dönük olduğu için sağ-alt kenar = gerçek alt) */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
    box-shadow:
        0 28px 30px -6px rgba(80, 90, 100, 0.45),
        0 50px 50px -10px rgba(60, 70, 80, 0.38),
        28px 28px 35px -8px rgba(90, 100, 110, 0.4),
        -28px 28px 35px -8px rgba(90, 100, 110, 0.4);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    position: absolute;
    inset: 0;
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 18px;
}

.service-card-offset {
    margin-top: -40px;
}

.service-card h3 {
    color: #111111;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0 10px;
}

.service-card p {
    color: #2c2c2c;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.service-arrow {
    margin-top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #111111;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-arrow {
    background: #111111;
    color: #ffffff;
}

/* Service icons (CSS-drawn, 3D efektli siyah tema) */
.service-icon {
    width: 42px;
    height: 42px;
    position: relative;
    margin-bottom: 6px;
    filter:
        drop-shadow(1px 2px 0 rgba(0, 0, 0, 0.55))
        drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35))
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
    transform: perspective(400px) rotateX(12deg);
    transform-origin: center bottom;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-icon {
    transform: perspective(400px) rotateX(18deg) translateY(-3px) scale(1.08);
    filter:
        drop-shadow(1px 3px 0 rgba(0, 0, 0, 0.6))
        drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4))
        drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
}

/* 3D dolgu: koyudan a\u00e7\u0131\u011fa metalik gradient + i\u00e7 highlight */
.service-icon::before,
.service-icon::after {
    background-image: linear-gradient(160deg, #4a4a4a 0%, #1a1a1a 45%, #000000 100%) !important;
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.25),
        inset -1px -2px 2px rgba(0, 0, 0, 0.6);
}

/* Kamyon */
.service-icon.icon-truck::before {
    content: "";
    position: absolute;
    left: 0; bottom: 8px;
    width: 22px; height: 14px;
    background: #111111;
    border-radius: 2px;
}
.service-icon.icon-truck::after {
    content: "";
    position: absolute;
    right: 0; bottom: 8px;
    width: 14px; height: 10px;
    background: #111111;
    clip-path: polygon(0 40%, 60% 40%, 100% 100%, 0 100%);
}

/* Depo / Ev */
.service-icon.icon-warehouse::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 2px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-bottom: 14px solid #111111;
}
.service-icon.icon-warehouse::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 26px; height: 18px;
    background: #111111;
    border-radius: 2px;
}

/* Para çantası */
.service-icon.icon-cash {
    display: flex; align-items: flex-end; justify-content: center;
}
.service-icon.icon-cash::before {
    content: "";
    position: absolute;
    left: 50%; top: 4px;
    transform: translateX(-50%);
    width: 14px; height: 6px;
    border: 2px solid #111111;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}
.service-icon.icon-cash::after {
    content: "$";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 24px;
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
}

/* Mühendis (anahtar) */
.service-icon.icon-engineer::before {
    content: "";
    position: absolute;
    left: 6px; top: 6px;
    width: 26px; height: 4px;
    background: #111111;
    transform: rotate(45deg);
    transform-origin: left center;
    border-radius: 2px;
}
.service-icon.icon-engineer::after {
    content: "";
    position: absolute;
    right: 2px; top: 2px;
    width: 12px; height: 12px;
    border: 3px solid #111111;
    border-radius: 50%;
}

/* Gemi */
.service-icon.icon-ship::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 2px;
    transform: translateX(-50%);
    width: 3px; height: 16px;
    background: #111111;
}
.service-icon.icon-ship::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%; height: 12px;
    background: #111111;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
    border-radius: 0 0 6px 6px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }
    .service-card-offset {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 30px;
    }
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }
    .service-card {
        width: 240px;
        height: 240px;
    }
    .service-icon {
        width: 60px;
        height: 60px;
    }
    .service-card h3 { font-size: 1.15rem; }
    .service-card p { font-size: 0.95rem; }
    .service-card-offset {
        margin-top: 0;
    }
    .services-bg {
        padding-bottom: 100px;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
    background-color: white;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* ==================== �leti�im Section ==================== */
.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    color: #111;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f1f3f6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-form-box {
    padding: 40px 35px;
}

.contact-form-title {
    color: #111;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8dde3;
    border-radius: 6px;
    background: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2d8fe0;
    box-shadow: 0 0 0 3px rgba(45,143,224,0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-submit {
    background: #0a1f4d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.contact-submit:hover {
    background: #061436;
    transform: translateY(-2px);
}

.contact-map {
    min-height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* Alt info sat�r� */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.contact-info-item p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-item a {
    color: #2d8fe0;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(160deg, #4a4a4a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.22),
        inset -2px -3px 4px rgba(0, 0, 0, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.35),
        0 12px 22px rgba(0, 0, 0, 0.25);
    transform: perspective(400px) rotateX(12deg);
    transform-origin: center bottom;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: perspective(400px) rotateX(18deg) translateY(-6px) scale(1.08);
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.3),
        inset -2px -3px 4px rgba(0, 0, 0, 0.7),
        0 12px 22px rgba(0, 0, 0, 0.45),
        0 22px 35px rgba(0, 0, 0, 0.3);
}

/* Konum (damla pin) */
.contact-info-icon.ci-location::before {
    content: "";
    position: absolute;
    top: 12px; left: 50%;
    width: 22px; height: 22px;
    background: #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: translateX(-50%) rotate(-45deg);
    box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2);
}
.contact-info-icon.ci-location::after {
    content: "";
    position: absolute;
    top: 19px; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
}

/* Telefon (beyaz ahize - SVG) */
.contact-info-icon.ci-phone::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    background-color: #ffffff;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.05-.24c1.16.39 2.42.6 3.71.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.29.21 2.55.6 3.71a1 1 0 0 1-.24 1.05l-2.24 2.03z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.05-.24c1.16.39 2.42.6 3.71.6a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.29.21 2.55.6 3.71a1 1 0 0 1-.24 1.05l-2.24 2.03z'/></svg>") no-repeat center / contain;
}
.contact-info-icon.ci-phone::after { content: none; }

/* Mail (zarf) */
.contact-info-icon.ci-mail::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 20px;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2);
}
.contact-info-icon.ci-mail::after {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 11px solid #1a1a1a;
}

@media (max-width: 850px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 320px; }
    .contact-info-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-info-row { grid-template-columns: 1fr; }
}

/* ==================== Footer ==================== */
.site-footer {
    padding: 18px 30px;
    text-align: left;
}
.site-footer p {
    margin: 0;
    color: #444;
    font-size: 0.85rem;
}

/* Footer */
.site-footer { padding: 18px 30px; text-align: left; }
.site-footer p { margin: 0; color: #444; font-size: 0.85rem; }


.copyright-text { margin: 20px 30px; color: #444; font-size: 0.85rem; }


.footer-row { 
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    margin: 20px 30px; 
}
.footer-row p { margin: 0; color: #444; font-size: 0.85rem; }
.footer-row .copyright-text { justify-self: start; }
.footer-row .credit-text { justify-self: center; }
.footer-row .admin-link-wrapper { justify-self: end; }

/* Yeni Yönetici Butonu (Footer) */
.footer-admin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.footer-admin-btn svg {
    width: 18px;
    height: 18px;
}
.footer-admin-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}


/* Tasarımcı imza butonu */
.credit-text { display: flex; align-items: center; gap: 10px; }
.signature-wrapper { position: relative; display: inline-block; }
.signature-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.signature-btn img {
    height: 38px;
    width: auto;
    display: block;
    opacity: 0.85;
    filter: invert(1) brightness(0);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.signature-btn:hover { transform: scale(1.08) rotate(-2deg); }
.signature-btn:hover img { opacity: 1; }

.signature-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 50;
}
.signature-wrapper:hover .signature-menu,
.signature-btn:focus + .signature-menu,
.signature-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.signature-menu a {
    padding: 9px 16px;
    text-decoration: none;
    color: #111;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.signature-menu a:hover {
    background: #f3f5f8;
    transform: translateX(4px);
    padding-left: 22px;
    color: #0a1f4d;
}
.signature-menu a:active { transform: translateX(2px) scale(0.98); }

/* Alt sayfa (Misyon & Vizyon vb.) */
.page-section {
    padding: 60px 30px 80px;
    background: #ffffff;
}
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}
.page-title {
    text-align: center;
    font-size: 2.2rem;
    color: #0a1f4d;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.page-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    perspective: 1200px;
}
.page-card {
    position: relative;
    background: linear-gradient(160deg, #ffffff 0%, #eef1f6 100%);
    border: 1px solid #d8dde6;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow:
        0 2px 0 #ffffff inset,
        0 -2px 0 rgba(0,0,0,0.05) inset,
        0 10px 22px rgba(10, 31, 77, 0.12),
        0 18px 30px rgba(0, 0, 0, 0.08);
    transform: perspective(900px) rotateX(6deg) rotateY(-4deg);
    transform-style: preserve-3d;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    z-index: 1;
}
.page-card:nth-child(2) {
    transform: perspective(900px) rotateX(6deg) rotateY(4deg);
}
/* Kart arkasindaki gri hale */
.page-card::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: radial-gradient(ellipse at center,
        rgba(120, 130, 145, 0.55) 0%,
        rgba(90, 100, 115, 0.35) 35%,
        rgba(60, 70, 85, 0.0) 70%);
    filter: blur(22px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.45s ease;
}
.page-card:hover {
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-6px) scale(1.02);
    box-shadow:
        0 2px 0 #ffffff inset,
        0 -2px 0 rgba(0,0,0,0.05) inset,
        0 18px 36px rgba(10, 31, 77, 0.18),
        0 28px 50px rgba(0, 0, 0, 0.14);
}
.page-card:hover::before { opacity: 1; }
.page-card h2 {
    color: #0a1f4d;
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.page-card p {
    color: #000000;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .page-cards { grid-template-columns: 1fr; }
}

/* Misyon & Vizyon banner */
.page-banner {
    width: 900px;
    max-width: 100%;
    height: 380px;
    margin: 0 auto 40px;
    border-radius: 14px;
    overflow: hidden;
    background: #eef1f6;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center,
        rgba(140, 150, 165, 0.55) 0%,
        rgba(100, 110, 125, 0.35) 40%,
        rgba(60, 70, 85, 0) 75%);
    filter: blur(24px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}
.page-banner:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(160, 170, 185, 0.5),
        0 0 25px rgba(140, 150, 165, 0.55),
        0 16px 38px rgba(80, 90, 105, 0.35);
}
.page-banner:hover::before { opacity: 1; }
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: saturate(1) brightness(1);
}
.page-banner:hover img {
    transform: scale(1.05);
    filter: saturate(1.15) brightness(1.05);
}

/* Hakkimizda kart */
.about-section {
    padding: 60px 30px 20px;
    background: transparent;
    display: flex;
    justify-content: center;
}
.about-card {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(145deg, #1c1c24 0%, #101014 100%);
    border: 1px solid #333344;
    border-radius: 40px; /* Daha kivrimli */
    padding: 50px 60px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.05) inset,
        0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-radius 0.5s ease;
    position: relative;
    z-index: 1;
}
.about-card::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 46px;
    background: radial-gradient(ellipse at center,
        rgba(50, 120, 255, 0.15) 0%,
        rgba(0, 0, 0, 0) 70%);
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease, border-radius 0.5s ease;
}
.about-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-8px);
    border-radius: 20px 60px 20px 60px; /* Dinamik yaprak tasarimi kivrimi */
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.1) inset,
        0 25px 50px rgba(0, 0, 0, 0.4);
}
.about-card:hover::before { 
    opacity: 1; 
    border-radius: 26px 66px 26px 66px; 
}
.about-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.about-text {
    color: #b0b4c0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}
.about-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Hero yarım çember banner */
.hero-banner {
    width: 100%;
    margin-top: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}
.hero-banner-inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 85vh; /* Aşağı doğru daha büyük yapıldı */
    min-height: 650px;
    overflow: hidden;
    /* Yarim cember maskesi kaldirildi ki resimler kesilmesin */
    border-radius: 0;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    background: #6c727a;
    animation: heroBannerFloat 7s ease-in-out infinite;
}
.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Fotoğraflar bozulmasın diye zoom animasyonu tamamen kaldırıldı */
}
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.18) 0%,
        rgba(220,225,235,0.22) 50%,
        rgba(180,190,205,0.28) 100%);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
    pointer-events: none;
}
@keyframes heroBannerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes heroBannerZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
@media (max-width: 768px) {
    .hero-banner-inner { height: 500px; } /* Mobilde de asagi dogru daha buyuk */
}

/* Foto/video yuklendiginde bugulu overlay kaldir */
.hero-banner-inner.has-media .hero-banner-overlay { display: none; }

/* Hero menu bannerin ustunde, banner yukari dogru genisledi */
.hero {
    position: relative;
    z-index: 10;
    padding-bottom: 90px; /* menunun altinda nefes payi */
}
.hero-banner {
    margin-top: -110px; /* banner yukari dogru uzasin, menunun altina girsin */
    position: relative;
    z-index: 1;
}
.banner-buttons {
    position: relative;
    z-index: 11;
}
/* Menu yazilari banner uzerinde okunakli */
.banner-btn {
    text-shadow:
        0 1px 0 #ffffff,
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 14px rgba(255, 255, 255, 0.5);
}
.banner-btn:hover {
    text-shadow:
        0 1px 0 #ffffff,
        0 3px 8px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(255, 255, 255, 0.65);
}
@media (max-width: 768px) {
    .hero { padding-bottom: 60px; }
    .hero-banner { margin-top: -70px; }
}

/* MV banner: default (medya yokken) hero ile ayni gri + bugulu tema */
.page-banner {
    background: #6c727a !important;
}
.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.18) 0%,
        rgba(220,225,235,0.22) 50%,
        rgba(180,190,205,0.28) 100%);
    backdrop-filter: blur(8px) saturate(115%);
    -webkit-backdrop-filter: blur(8px) saturate(115%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
    pointer-events: none;
    z-index: 2;
}
.page-banner.has-media::after { display: none; }

/* Hero banner sol ust kose logosu */
.hero-banner-logo-link {
    position: absolute;
    top: 0px;
    left: -20px; /* Sola kaydırıldı */
    z-index: 20;
    display: inline-block;
    line-height: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.hero-banner-logo-link:hover { transform: scale(1.05); }
.hero-banner-logo {
    position: static;
    height: 270px; /* Biraz büyütüldü */
    width: auto;
    max-width: 80vw;
    object-fit: contain;
    z-index: 20;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
    pointer-events: none;
    animation: logoFadeIn 0.8s ease-out backwards;
}
.hero-banner-logo-link { pointer-events: auto; }
@keyframes logoFadeIn {
    0%   { opacity: 0; transform: translateY(-12px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
    .hero-banner-logo { height: 170px; top: 14px; left: 16px; }
}

/* Beyaz navbar ortasinda logo */
.navbar .container { position: relative; }
.navbar-logo {
    position: absolute;
    left: 50%;
    top: -10px; /* Daha yukarıya konumlandırıldı */
    transform: translateX(-50%);
    z-index: 5000;
    line-height: 0;
    transition: transform 0.25s ease;
    pointer-events: auto;
}
.navbar-logo img {
    height: 220px !important;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.navbar-logo:hover { transform: translateX(-50%) scale(1.05); }
body.scrolled .navbar-logo:hover { transform: translate(-50%, -50%) scale(1.05); }

@media (max-width: 768px) {
    .navbar-logo img { height: 78px !important; }
}

/* ============================================
   BUYUK EKRAN / TV DESTEGI (Full HD, 2K, 4K)
   ============================================ */

/* Full HD ve uzeri (1920px+) */
@media (min-width: 1600px) {
    .container { max-width: 1500px; }
    .hero-banner-inner { height: 640px; }
    .hero-banner-logo { height: 280px; }
    .services-grid { max-width: 1200px; }
    .service-card { width: 260px; height: 260px; }
    .service-card h3 { font-size: 1.25rem; }
    .service-card p { font-size: 0.98rem; }
    .service-icon { width: 50px; height: 50px; }
    body { font-size: 18px; }
    .contact-section { max-width: 1400px; }
    .page-wrapper { max-width: 1300px; }
}

/* 2K - 4K TV (2200px+) */
@media (min-width: 2200px) {
    .container { max-width: 1800px; }
    .hero-banner-inner { height: 760px; }
    .hero-banner-logo { height: 340px; }
    .services-grid { max-width: 1500px; }
    .service-card { width: 320px; height: 320px; }
    .service-card h3 { font-size: 1.5rem; }
    .service-card p { font-size: 1.1rem; }
    .service-icon { width: 64px; height: 64px; }
    body { font-size: 20px; }
    .contact-section { max-width: 1700px; }
    .page-wrapper { max-width: 1600px; }
    .navbar-logo { height: 160px; }
}

/* 4K Ultra (2800px+) */
@media (min-width: 2800px) {
    .container { max-width: 2200px; }
    .hero-banner-inner { height: 900px; }
    .hero-banner-logo { height: 400px; }
    .services-grid { max-width: 1800px; }
    .service-card { width: 380px; height: 380px; }
    .service-card h3 { font-size: 1.8rem; }
    .service-card p { font-size: 1.3rem; }
    body { font-size: 24px; }
    .contact-section { max-width: 2100px; }
    .page-wrapper { max-width: 2000px; }
    .navbar-logo { height: 200px; }
}

/* ============================================
   MOBIL DUZENLEMELER - TUM EKRAN UYUMLU
   ============================================ */
@media (max-width: 768px) {
    /* Header padding ve bosluk */
    header { padding: 6px 0 !important; }
    .navbar .container {
        flex-wrap: nowrap !important;
        padding: 0 4px;
        gap: 2px;
        justify-content: space-between !important;
    }

    /* Sosyal medya butonlari sol ust - kompakt */
    .logo-social { flex: 0 0 auto; gap: 4px; }
    .social-buttons {
        margin-left: 0 !important;
        gap: 6px;
        order: 1;
    }
    .social-btn { width: 34px; height: 34px; }
    .social-btn svg { width: 16px; height: 16px; }

    /* Cevirme + admin sag ust - kompakt */
    .translation-buttons {
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 6px;
        order: 3;
        flex-wrap: nowrap;
    }
    .translation-btn img { height: 22px; width: 22px; }
    .profile-btn {
        width: 26px;
        height: 26px;
        margin-left: 6px;
    }
    .profile-icon { width: 14px; height: 14px; }
    .profile-icon::before { width: 6px; height: 6px; }
    .profile-icon::after { width: 12px; height: 7px; }

    /* Ortadaki logo */
    .navbar-logo {
        position: static !important;
        transform: none !important;
        order: 2;
        flex: 0 0 auto;
    }
    .navbar-logo img { height: 45px !important; }
    .navbar-logo:hover { transform: scale(1.05) !important; }

    /* Hero menu butonlari mobilde saga yasla (PC gibi sag ust) */
    .banner-buttons {
        gap: 8px !important;
        padding: 0 10px;
        justify-content: flex-end !important;
    }
    .banner-btn {
        font-size: 0.78rem !important;
        padding: 5px 9px !important;
    }

    /* Hizmet kartlari mobilde tek sutun ve buyuk */
    .services-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px !important;
        gap: 30px !important;
    }
    .services-grid .service-card:nth-child(n) {
        grid-column: auto !important;
    }
    .service-card {
        width: 240px !important;
        height: 240px !important;
    }
    .service-card-offset { margin-top: 0 !important; }

    /* Footer mobil duzeni - imza belirgin */
    .footer-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px;
        margin: 20px 16px !important;
        text-align: center;
    }
    .footer-row .copyright-text, 
    .footer-row .credit-text, 
    .footer-row .admin-link-wrapper {
        justify-self: center;
    }
    .credit-text { justify-content: center !important; }
    .signature-btn img { height: 44px !important; opacity: 1 !important; }
}

/* Cok kucuk telefonlar (iPhone SE vs.) */
@media (max-width: 380px) {
    .social-btn { width: 30px; height: 30px; }
    .social-btn svg { width: 14px; height: 14px; }
    .translation-btn img { height: 18px; width: 18px; }
    .profile-btn { width: 22px; height: 22px; margin-left: 4px; }
    .navbar-logo img { height: 50px !important; }
    .banner-btn { font-size: 0.78rem !important; padding: 5px 8px !important; }
}

/* ============================================
   MOBIL KOMPAKT DUZEN - Kucuk ekrana sigsin
   ============================================ */
@media (max-width: 768px) {
    /* Hero banner kucult */
    .hero-banner-inner { height: 220px !important; }
    .hero-banner-logo { height: 110px !important; top: 10px !important; left: 10px !important; }

    /* Hero menu kompakt - PC gibi sag tarafta */
    .hero { padding: 8px 0 4px !important; }
    .banner-buttons {
        gap: 6px !important;
        padding: 0 10px;
        justify-content: flex-end !important;
    }
    .banner-btn {
        font-size: 0.78rem !important;
        padding: 5px 9px !important;
    }

    /* Hakkimizda - kompakt */
    .about-section, .about {
        padding: 24px 14px !important;
    }
    .about-card {
        padding: 18px 16px !important;
        max-width: 92% !important;
    }
    .about-card h2 { font-size: 1.3rem !important; margin-bottom: 10px !important; }
    .about-card p, .about p { font-size: 0.88rem !important; line-height: 1.5 !important; }

    /* Hizmetler bolumu kompakt */
    .services-bg, .services {
        padding: 24px 8px 40px !important;
    }
    .services h2, .services-title {
        font-size: 1.5rem !important;
        margin-bottom: 6px !important;
    }
    .services-subtitle, .services p {
        font-size: 0.85rem !important;
        margin-bottom: 14px !important;
    }
    /* PC gibi 3 ust + 2 alt yerlesim (6-sutunlu grid) */
    .services-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        max-width: 100% !important;
        gap: 8px !important;
        padding: 0 4px !important;
        justify-items: center !important;
    }
    .services-grid .service-card:nth-child(1) { grid-column: 1 / span 2 !important; }
    .services-grid .service-card:nth-child(2) { grid-column: 3 / span 2 !important; }
    .services-grid .service-card:nth-child(3) { grid-column: 5 / span 2 !important; }
    .services-grid .service-card:nth-child(4) { grid-column: 2 / span 2 !important; }
    .services-grid .service-card:nth-child(5) { grid-column: 4 / span 2 !important; }
    .service-card {
        width: 100% !important;
        max-width: 115px !important;
        height: 115px !important;
    }
    .service-card-inner { padding: 6px 4px !important; }
    .service-card h3 { font-size: 0.62rem !important; margin: 3px 0 3px !important; line-height: 1.1 !important; }
    .service-card p { font-size: 0.5rem !important; line-height: 1.2 !important; }
    /* Icon'u tam boyutta tutup scale ile kucult (ic cizimler bozulmasin) */
    .service-icon { width: 42px !important; height: 42px !important; margin-bottom: 0 !important; transform: scale(0.55) !important; transform-origin: center bottom !important; }
    .service-arrow { width: 14px !important; height: 14px !important; font-size: 0.6rem !important; margin-top: 2px !important; }
    .service-card-offset { margin-top: 0 !important; }

    /* Iletisim kompakt */
    .contact-section { margin: 30px auto !important; padding: 0 10px !important; }
    .contact-title { font-size: 1.4rem !important; margin-bottom: 16px !important; }
    .contact-wrapper { grid-template-columns: 1fr !important; }
    .contact-form-box, .contact-info-box { padding: 16px !important; }
    .contact-form-box input,
    .contact-form-box textarea {
        font-size: 0.9rem !important;
        padding: 8px 10px !important;
    }
    .contact-form-box button { padding: 10px 16px !important; font-size: 0.9rem !important; }

    /* Iletisim kartlari (adres/tel/mail) - PC gibi 3 yan yana */
    .info-cards, .contact-info-grid, .contact-info-row {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 8px !important;
        padding: 0 6px !important;
        display: grid !important;
        margin-top: 24px !important;
    }
    .info-card, .contact-info-item {
        padding: 12px 4px !important;
    }
    .info-card-icon, .contact-info-icon {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto 10px !important;
        transform: scale(0.82) !important;
        transform-origin: center !important;
    }
    .contact-info-item:hover .contact-info-icon,
    .info-card:hover .info-card-icon {
        transform: scale(0.86) !important;
    }
    .info-card-text, .contact-info-text, .contact-info-item p {
        font-size: 0.62rem !important;
        word-break: break-word !important;
        line-height: 1.3 !important;
    }
    .info-card h3, .contact-info-item h3 { font-size: 0.78rem !important; }

    /* Misyon-Vizyon banner kucult */
    .page-banner { height: 200px !important; width: 100% !important; max-width: 92% !important; }
    .page-banner img { max-height: none !important; height: 100% !important; width: 100% !important; object-fit: cover !important; }
    .page-section { padding: 30px 14px 40px !important; }
    .page-title { font-size: 1.5rem !important; margin-bottom: 20px !important; }
    /* Misyon/Vizyon kartlari yan yana (PC gibi) */
    .page-cards {
        gap: 10px !important;
        grid-template-columns: 1fr 1fr !important;
        display: grid !important;
    }
    .page-card { padding: 14px 10px !important; }
    .page-card h2 { font-size: 0.95rem !important; }
    .page-card p { font-size: 0.7rem !important; line-height: 1.4 !important; }
}

/* Cok kucuk telefonlar (380px ve alti) */
@media (max-width: 380px) {
    .hero-banner-inner { height: 180px !important; }
    .hero-banner-logo { height: 90px !important; }
    .service-card { max-width: 95px !important; height: 95px !important; }
    .service-card h3 { font-size: 0.55rem !important; }
    .service-card p { font-size: 0.45rem !important; }
    .service-icon { transform: scale(0.45) !important; }
    .info-card-text, .contact-info-text, .contact-info-item p { font-size: 0.55rem !important; }
    .contact-info-icon { transform: scale(0.5) !important; }
}

/* Mobilde sticky header garantisi */
@media (max-width: 768px) {
    header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    body.scrolled .hero {
        top: 60px !important;
    }
    body.scrolled .hero-spacer {
        height: 50px !important;
    }
}
