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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}
/* =========================
   PREMIUM HEADER / NAVBAR
========================= */

.topbar {
    background: linear-gradient(90deg, #07182f 0%, #0b1f3a 50%, #10294b 100%);
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left span {
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.topbar-right span {
    color: rgba(255,255,255,0.35);
}

.lang-link {
    color: rgba(255,255,255,0.72);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.4px;
}

.lang-link:hover,
.lang-link.active {
    color: #d4af37;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 32px rgba(10, 22, 40, 0.08);
}

.site-header,
.navbar,
.nav-inner {
    overflow: visible;
}

.navbar {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0b1f3a;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 360px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    min-width: 0;
}

.brand-text strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    color: #0b1f3a;
    font-weight: 800;
}

.brand-text span {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
}

.main-nav > ul > li {
    position: relative;
    flex: 0 0 auto;
}

.main-nav > ul > li > a,
.nav-link-with-toggle > a {
    color: #0f172a;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.main-nav > ul > li > a:hover,
.nav-link-with-toggle > a:hover,
.main-nav > ul > li > a.active,
.main-nav > ul > li.active > .nav-link-with-toggle > a {
    color: #0b1f3a;
    background: rgba(11, 31, 58, 0.05);
}

.nav-link-with-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.submenu-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
    flex-shrink: 0;
}

.submenu-toggle:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid #0b1f3a;
    border-bottom: 2px solid #0b1f3a;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: 0.25s ease;
}

.has-dropdown.open .submenu-toggle span {
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* Masaüstü mega menu */
.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    transform: translateY(14px);
    width: min(1180px, calc(100vw - 40px));
    max-width: 1180px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.18);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
    border: 1px solid rgba(226, 232, 240, 0.9);
    z-index: 1001;
}

.mega-column {
    min-width: 0;
}

.mega-column h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9eef5;
}

.mega-column .mega-subtitle {
    margin-top: 20px;
}

.mega-column a {
    display: block;
    color: #475569;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    padding: 2px 0;
    border-radius: 8px;
}

.mega-column a:hover {
    color: #d4af37;
    padding-left: 6px;
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #0b1f3a;
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 1200px) {
    .brand {
        max-width: 280px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .main-nav > ul {
        gap: 6px;
    }

    .main-nav > ul > li > a,
    .nav-link-with-toggle > a {
        font-size: 14px;
        padding: 12px 14px;
    }

    .mega-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(1000px, calc(100vw - 32px));
        padding: 24px;
    }
}

/* Mobil */
@media (max-width: 991px) {
    .topbar-inner {
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar-right {
        width: 100%;
        justify-content: flex-end;
    }

    .nav-inner {
        min-height: 78px;
        gap: 14px;
    }

    .brand {
        max-width: calc(100% - 62px);
        gap: 12px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text span {
        font-size: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .submenu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        padding: 0;
        z-index: 1002;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav > ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255,255,255,0.99);
        backdrop-filter: blur(16px);
        border: 1px solid #e5e7eb;
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(2, 8, 23, 0.14);
        padding: 12px;
        overflow: hidden;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav > ul > li > a {
        display: flex;
        width: 100%;
        padding: 14px 14px;
        border-radius: 14px;
    }

    .nav-link-with-toggle {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 42px;
        gap: 10px;
        align-items: center;
    }

    .nav-link-with-toggle > a {
        width: 100%;
        min-width: 0;
        padding: 14px 14px;
        border-radius: 14px;
    }

    /* Mobilde mega menu tamamen blok yapı */
    .mega-menu {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        display: block;
        background: #f8fafc;
        backdrop-filter: none;
        box-shadow: inset 0 0 0 1px #e8eef5;
        border: none;
        border-radius: 18px;
        padding: 0;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .has-dropdown.open .mega-menu {
        max-height: 1600px;
        padding: 14px;
    }

    .mega-column {
        width: 100%;
        min-width: 0;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #e8eef5;
    }

    .mega-column:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .mega-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .mega-column a {
        display: block;
        width: 100%;
        font-size: 14px;
        margin-bottom: 8px;
        padding: 6px 0;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }

    .topbar {
        font-size: 12px;
    }

    .topbar-left {
        width: 100%;
    }

    .topbar-left span {
        display: block;
        line-height: 1.5;
    }

    .topbar-right {
        justify-content: flex-start;
    }

    .nav-inner {
        min-height: 72px;
    }

    .brand {
        max-width: calc(100% - 58px);
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-text strong {
        font-size: 15px;
        line-height: 1.2;
    }

    .brand-text span {
        font-size: 11px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .main-nav {
        left: 0;
        right: 0;
    }

    .main-nav > ul {
        padding: 10px;
        border-radius: 18px;
    }

    .main-nav > ul > li > a,
    .nav-link-with-toggle > a {
        font-size: 14px;
        padding: 13px 12px;
    }

    .submenu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .mega-menu {
        margin-top: 8px;
        border-radius: 14px;
    }

    .has-dropdown.open .mega-menu {
        padding: 12px;
    }
}
/* =========================
   INDEX.PHP / ANASAYFA
========================= */

.section-space {
    padding: 90px 0;
}

.bg-light {
    background: #f8fafc;
}

.section-head {
    margin-bottom: 45px;
}

.section-head.center {
    text-align: center;
}

.section-mini-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #d4af37;
    margin-bottom: 12px;
}

.section-head h2,
.about-content h2,
.cta-box h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.section-head p,
.about-content p,
.cta-box p {
    color: #6b7280;
    font-size: 16px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b1f3a;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,18,35,0.86) 0%, rgba(7,18,35,0.68) 40%, rgba(7,18,35,0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 100px 20px;
}

.hero-left {
    max-width: 760px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f3d57a;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.hero-left h1 strong {
    color: #d4af37;
    font-weight: 800;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* BUTTONS */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #d4af37;
    color: #0b1f3a;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #c9a52f;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.map-card {
    min-width: 280px;
    max-width: 340px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
    position: relative;
}

.map-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #fff;
}

.map-card p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.pulse-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d4af37;
    margin-bottom: 20px;
    box-shadow: 0 0 0 rgba(212,175,55, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

/* INFO STRIP */
.info-strip {
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

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

.info-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
    text-align: center;
}

.info-box h3 {
    font-size: 26px;
    color: #0b1f3a;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 15px;
    color: #6b7280;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.12);
}

.about-content p {
    margin-bottom: 18px;
    line-height: 1.85;
}

/* PRODUCTS HOME */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 290px;
    background: #111827;
    box-shadow: 0 14px 40px rgba(15,23,42,0.10);
}

.product-card img {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.72);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,31,58,0.05) 0%, rgba(11,31,58,0.82) 100%);
}

.product-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.product-card-content h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 6px;
}

.product-card-content span {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

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

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 28px rgba(15,23,42,0.05);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.09);
}

.why-card h3 {
    font-size: 21px;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.why-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

/* CTA */
.cta-section {
    padding: 0 0 40px;
}

.cta-box {
    background: linear-gradient(135deg, #0b1f3a 0%, #132f56 100%);
    border-radius: 28px;
    padding: 42px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    box-shadow: 0 24px 60px rgba(11,31,58,0.18);
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255,255,255,0.82);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-left h1 {
        font-size: 48px;
    }

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

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

@media (max-width: 991px) {
    .section-space {
        padding: 70px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 80px 20px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-left h1 {
        font-size: 40px;
    }

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

    .info-strip {
        margin-top: 0;
        padding-top: 24px;
    }

    .info-grid,
    .about-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-image img {
        height: 420px;
    }

    .section-head h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-left h1 {
        font-size: 34px;
    }

    .section-head h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .info-grid,
    .about-grid,
    .product-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .product-card,
    .product-card img {
        min-height: 240px;
    }

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

@media (max-width: 576px) {
    .hero-content {
        padding: 65px 20px;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .info-box {
        padding: 22px 18px;
    }

    .product-card-content h3 {
        font-size: 22px;
    }
}
/* =========================
   KURUMSAL.PHP
========================= */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1f3a 0%, #16365f 100%);
    padding: 110px 0 90px;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
}

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

.corporate-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.14);
}

.corporate-text h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 18px;
}

.corporate-text p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.content-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.06);
    border: 1px solid #edf2f7;
    height: 100%;
}

.content-card h3 {
    font-size: 24px;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.content-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.9;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.vm-card {
    background: linear-gradient(135deg, #0b1f3a 0%, #16365f 100%);
    color: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 18px 45px rgba(11,31,58,0.15);
}

.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.28);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #fff;
}

.vm-card p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.9;
}

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

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 28px rgba(15,23,42,0.05);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}

.value-card h3 {
    font-size: 21px;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.value-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

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

@media (max-width: 991px) {
    .page-hero {
        padding: 90px 0 70px;
    }

    .page-hero-content h1 {
        font-size: 42px;
    }

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

    .corporate-image img {
        height: 420px;
    }

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

@media (max-width: 767px) {
    .page-hero-content h1 {
        font-size: 34px;
    }

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

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

    .corporate-image img {
        height: 300px;
    }

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

    .content-card,
    .vm-card,
    .value-card {
        padding: 26px 20px;
    }
}
/* =========================
   URUNLER.PHP
========================= */

.products-page {
    background: #ffffff;
}

.product-category-block {
    margin-bottom: 70px;
}

.category-head {
    margin-bottom: 26px;
}

.category-head h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.category-head p {
    font-size: 16px;
    color: #6b7280;
    max-width: 760px;
}

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

.product-item-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e8eef5;
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 150px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-item-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b1f3a 0%, #d4af37 100%);
}

.product-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.09);
    border-color: #dbe4ee;
}

.product-item-card h3 {
    font-size: 22px;
    line-height: 1.35;
    color: #0b1f3a;
    margin-bottom: 14px;
    font-weight: 700;
}

.product-item-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
}

.product-item-card span::after {
    content: "→";
    font-size: 15px;
}

@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .category-head h2 {
        font-size: 28px;
    }

    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-item-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .product-item-card h3 {
        font-size: 20px;
    }
}
/* =========================
   URUN-DETAY.PHP
========================= */

.product-detail-section {
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 32px;
}

.product-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #e8eef5;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.product-detail-content {
    display: grid;
    gap: 24px;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-top: 12px;
}

.detail-box {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.detail-box h2 {
    font-size: 26px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 16px;
}

.detail-box p {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

.detail-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.detail-list li {
    position: relative;
    padding-left: 22px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.detail-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4af37;
    position: absolute;
    left: 0;
    top: 8px;
}

.spec-table {
    display: grid;
    gap: 12px;
}

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #edf2f7;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-weight: 700;
    color: #0b1f3a;
    font-size: 15px;
}

.spec-value {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.product-detail-cta {
    margin-top: 34px;
}

.product-detail-cta-box {
    background: linear-gradient(135deg, #0b1f3a 0%, #16365f 100%);
    border-radius: 28px;
    padding: 36px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.product-detail-cta-box h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.product-detail-cta-box p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
}

.cta-buttons-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.dark-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.dark-outline:hover {
    background: rgba(255,255,255,0.14);
}

.not-found-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 24px;
    padding: 48px 30px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.not-found-card h2 {
    font-size: 30px;
    color: #0b1f3a;
    margin-bottom: 12px;
}

.not-found-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .product-detail-grid,
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image img {
        height: 380px;
    }

    .product-detail-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-cta-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .detail-box {
        padding: 24px 20px;
    }

    .detail-box h2 {
        font-size: 22px;
    }

    .product-detail-image img {
        height: 260px;
        border-radius: 18px;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-detail-cta-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .product-detail-cta-box h2 {
        font-size: 22px;
    }

    .not-found-card {
        padding: 34px 20px;
    }

    .not-found-card h2 {
        font-size: 24px;
    }
}
/* =========================
   ILETISIM.PHP
========================= */

.contact-section {
    background: #fff;
}

.contact-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e8eef5;
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #0b1f3a;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.contact-form-box,
.contact-side-card {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.contact-form-box h2,
.contact-side-card h2 {
    font-size: 32px;
    color: #0b1f3a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-form-box p,
.contact-side-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.contact-side-box {
    display: grid;
    gap: 24px;
}

.contact-side-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
}

.contact-side-list li {
    position: relative;
    padding-left: 22px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.contact-side-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4af37;
    position: absolute;
    left: 0;
    top: 8px;
}

.dark-card {
    background: linear-gradient(135deg, #0b1f3a 0%, #16365f 100%);
    color: #fff;
}

.dark-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.dark-card p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 18px;
}

.contact-form {
    margin-top: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #0b1f3a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: #f8fafc;
    padding: 14px 16px;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.contact-whatsapp-btn {
    border-color: #d4af37;
    color: #0b1f3a;
    background: #fffaf0;
}

.contact-whatsapp-btn:hover {
    background: #fdf3d8;
}

.map-section {
    padding: 0 0 40px;
}

.map-box {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #e8eef5;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

@media (max-width: 1200px) {
    .contact-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box h2,
    .contact-side-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contact-top-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-side-card {
        padding: 26px 20px;
    }

    .contact-form-box h2,
    .contact-side-card h2 {
        font-size: 24px;
    }
}
html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .nav-inner,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .footer-top {
    direction: rtl;
}

html[dir="rtl"] .main-nav > ul {
    justify-content: flex-start;
}

html[dir="rtl"] .hero-buttons {
    justify-content: flex-start;
}

html[dir="rtl"] .mega-menu {
    left: 0;
    right: auto;
}
/* =========================
   PREMIUM FOOTER
========================= */

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(212,175,55,0.10), transparent 22%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 18%),
        linear-gradient(135deg, #07182f 0%, #0b1f3a 45%, #10294b 100%);
    color: #fff;
    margin-top: 90px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding: 70px 20px 36px;
}

.footer-col {
    min-width: 0;
}

.footer-col h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d4af37 0%, rgba(212,175,55,0.2) 100%);
}

.footer-col p {
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.9;
    max-width: 360px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col li {
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.7;
}

.footer-col a {
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.7;
    display: inline-block;
    transition: all 0.25s ease;
}

.footer-col a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 20px 26px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 56px 20px 30px;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-col h4 {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 991px) {

    .navbar{
        position: relative;
    }

    .main-nav{
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
        z-index: 999;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.active{
        display: block;
    }

    .main-nav ul{
        display: flex;
        flex-direction: column;
        padding: 14px 16px 20px;
        margin: 0;
        list-style: none;
    }

    .main-nav ul li{
        width: 100%;
    }

    .nav-link-with-toggle{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-link-with-toggle > a{
        flex: 1;
    }

    .submenu-toggle{
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .has-dropdown .mega-menu{
        display: none;
        position: static;
        box-shadow: none;
        border: 0;
        background: #f8fafc;
        margin-top: 10px;
        padding: 12px;
        border-radius: 12px;
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .has-dropdown.open .mega-menu{
        display: block;
    }

    .mega-column{
        margin-bottom: 18px;
    }

    .mega-column:last-child{
        margin-bottom: 0;
    }

    .mega-column h4,
    .mega-subtitle{
        margin: 0 0 10px;
    }

    .mega-column a{
        display: block;
        padding: 8px 0;
    }
}