/* =====================================================
   OSK DEKOR - osktheme - style.css (TEMİZLENMİŞ)
   Tüm mükerrer kurallar birleştirildi, hatalar düzeltildi.
   ===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Open Sans', -apple-system, sans-serif;
    font-size: 17px;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.65;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: color .2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.2;
}

:root {
    --g: #1a3c34;
    --gd: #0f2720;
    --gl: #2a5c4c;
    --gold: #c9a84c;
    --goldd: #b8902f;
    --bg: #f4f7f5;
    --muted: #6b7280;
}

/* =====================================================
   HEADER-TOP
   ===================================================== */
.header-top {
    background: var(--g) !important;
    padding: 10px 0 !important;
    position: relative;
    z-index: 200;
}

.header-top .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-top .information {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-direction: row !important;
    padding: 0 !important;
}

.header-top .info {
    display: flex !important;
    align-items: center;
}

.header-top .info a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .85) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color .2s;
}

.header-top .info a:hover {
    color: var(--gold) !important;
}

.header-top .info i {
    color: var(--gold);
    font-size: 13px;
}

.header-top .info p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}

.header-top .information-social {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 !important;
}

.header-top .sosyal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top .sosyal a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, .9) !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all .3s ease;
}

.header-top .sosyal a:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    background: #fff !important;
    border-bottom: 2px solid var(--g) !important;
    padding: 0 !important;
    position: relative;
    z-index: 500;
    width: 100%;
}

.header.osk-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .13) !important;
    animation: hdrSlide .3s ease;
    z-index: 9999 !important;
}

@keyframes hdrSlide {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100px;
    padding: 6px 15px !important;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Logo */
.header-flex .logo {
    display: block;
    flex-shrink: 0;
    margin-right: 24px;
}

.header-flex .logo img {
    height: 66px !important;
    width: auto !important;
    max-height: 66px !important;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header-flex .logo img {
        height: 88px !important;
        max-height: 88px !important;
    }
}

/* Hamburger */
#close {
    display: none;
    font-size: 22px;
    color: var(--g) !important;
    padding: 6px 10px;
    border: 1.5px solid var(--g);
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none !important;
}

#close:hover {
    background: var(--g);
    color: #fff !important;
}

/* Header Right */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-left: auto !important;
    justify-content: flex-end !important;
}

/* Main Menu */
.main-manu {
    margin-left: auto !important;
    display: block !important;
}

.main-manu>ul {
    display: flex !important;
    align-items: center;
    justify-content: flex-end !important;
    flex-wrap: nowrap;
    gap: 14px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-manu>ul>li {
    position: relative;
}

.main-manu>ul>li>a {
    display: block !important;
    padding: 26px 15px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--g) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
    position: relative;
    transition: color .2s;
}

.main-manu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    /* düzeltildi: "Bottom" → "bottom" */
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
}

.main-manu>ul>li:hover>a {
    color: var(--gold) !important;
}

.main-manu>ul>li:hover>a::after {
    transform: scaleX(1);
}

/* Dropdown */
.main-manu>ul>li>ul {
    position: absolute !important;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--g);
    border-top: 3px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s;
    z-index: 999;
    padding: 8px 0;
    margin: 0 !important;
    list-style: none !important;
}

.main-manu>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-manu>ul>li>ul>li>a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s, color .2s, padding-left .2s;
}

.main-manu>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.main-manu>ul>li>ul>li>a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--gold) !important;
    padding-left: 28px;
}

.main-manu ul li.mobilmenuon {
    display: none !important;
}

/* Header Tools */
.header-tools {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 16px;
}

/* Teklif Al */
.btn-teklif-header {
    display: inline-block !important;
    background: var(--g) !important;
    color: #fff !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    border: 2px solid var(--g) !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background .3s, border-color .3s;
}

.btn-teklif-header:hover {
    background: var(--gl) !important;
    border-color: var(--gl) !important;
    color: #fff !important;
}

/* Language */
.header-language {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: visible !important;
}

.header-language a,
.header-language img {
    border: none !important;
    box-shadow: none !important;
    border-radius: 2px !important;
}

.header-language a {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 4px 8px !important;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--g) !important;
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
    transition: all .2s;
}

.header-language a:hover {
    background: var(--g) !important;
    color: #fff !important;
}

.header-language img {
    width: 24px;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.mobilnone {
    display: inline-block;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.osk-text-content {
    margin-top: 60px !important;
}

.osk-page-content p,
.content p,
#content p,
.information-information #content p {
    text-align: justify !important;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.osk-hero {
    position: relative;
    overflow: hidden;
}

.osk-slide {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-slide-item {
    position: relative;
    width: 100%;
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    display: flex !important;
    align-items: center;
}

.osk-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 28, 22, .92) 0%, rgba(10, 28, 22, .92) 45%, rgba(10, 28, 22, .25) 100%);
}

.osk-slide-content {
    position: relative;
    z-index: 10;
}

.osk-slide-text {
    max-width: 580px;
}

.osk-tag-line {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.osk-slide-text h1 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.osk-slide-text p {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Buttons */
.osk-btn-primary,
.osk-btn-outline,
.osk-btn-ghost,
.osk-btn-whatsapp,
.osk-btn-outline-dark {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 32px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    transition: all .3s !important;
    cursor: pointer !important;
    height: 52px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none !important;
}

.osk-btn-primary {
    background: var(--g) !important;
    color: #fff !important;
    border: none !important;
}

.osk-btn-primary:hover {
    background: var(--gl) !important;
    color: #fff !important;
}

.osk-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.osk-btn-outline:hover {
    background: #fff !important;
    color: var(--g) !important;
}

.osk-btn-ghost {
    border: 2px solid rgba(255, 255, 255, .7) !important;
    color: #fff !important;
    background: transparent !important;
}

.osk-btn-ghost:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.osk-btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
    gap: 8px;
}

.osk-btn-whatsapp:hover {
    background: #1ebc58 !important;
    color: #fff !important;
}

.osk-btn-outline-dark {
    border: 2px solid var(--g) !important;
    color: var(--g) !important;
    background: transparent !important;
    gap: 8px;
}

.osk-btn-outline-dark:hover {
    background: var(--g) !important;
    color: #fff !important;
}

.osk-btn-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--g) !important;
    text-decoration: none !important;
    margin-left: 16px;
    transition: color .2s;
}

.osk-btn-link:hover {
    color: var(--gold) !important;
}

.osk-btn-submit:hover {
    background: #c9a84c !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 168, 76, 0.3) !important;
}

/* Owl Carousel */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(26, 60, 52, .75) !important;
    color: #fff !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    border: none !important;
    transition: background .3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.owl-nav .owl-prev {
    left: 16px !important;
}

.owl-nav .owl-next {
    right: 16px !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: var(--gold) !important;
}

.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}

.owl-dots {
    text-align: center;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15) !important;
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0 !important;
    margin: 0 !important;
}

.owl-dot.active {
    background: var(--gold) !important;
    width: 24px;
    border-radius: 6px;
}

.osk-hero .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 20;
}

.osk-hero .owl-dot {
    background: rgba(255, 255, 255, .3) !important;
}

.osk-hero .owl-dot.active {
    background: var(--gold) !important;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.osk-stats-bar {
    background: var(--g) !important;
    padding: 40px 0 !important;
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    clear: both !important;
}

.osk-stat-item {
    text-align: center;
    padding: 15px 20px;
}

.osk-stat-item strong {
    display: block !important;
    font-size: 46px !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    line-height: 0.9;
    margin-bottom: 10px !important;
    font-family: 'Barlow', sans-serif;
}

.osk-stat-item span {
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, .95) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.osk-stat-item+.osk-stat-item {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

/* =====================================================
   WHY OSK
   ===================================================== */
section.osk-why {
    padding: 90px 0 !important;
    background: var(--bg) !important;
    display: block !important;
    width: 100%;
    clear: both;
}

.osk-why-img {
    position: relative;
    margin-bottom: 20px;
}

.osk-img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .13);
}

.osk-img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.osk-img-badge {
    position: absolute;
    bottom: 26px;
    right: 26px;
    background: var(--g);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    z-index: 2;
}

.osk-img-badge i {
    font-size: 22px;
    color: var(--gold);
    display: block;
    margin-bottom: 7px;
}

.osk-img-badge span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

.osk-why-content {
    padding-left: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.osk-section-tag {
    display: inline-block;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 12px;
}

.osk-why-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--g);
    line-height: 1.1;
    margin-bottom: 18px;
}

.osk-why-content>p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 24px;
}

.osk-feature-list {
    margin-bottom: 30px;
}

.osk-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 11px;
}

.osk-feature i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.osk-section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    clear: both;
}

.osk-section-header h2 {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: var(--g) !important;
    text-transform: uppercase !important;
    margin-bottom: 12px;
}

.osk-section-header>p {
    font-size: 15px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

.osk-section-header--light h2 {
    color: var(--g) !important;
}

/* =====================================================
   PRODUCTS
   ===================================================== */
section.osk-products {
    padding: 88px 0 !important;
    background: #fff !important;
    display: block !important;
    width: 100%;
    clear: both;
}

.osk-product-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0, 0, 0, .07);
    background: #fff;
    transition: box-shadow .3s, transform .3s;
    margin: 0 8px;
}

.osk-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05) !important;
}

.osk-products-section .owl-stage-outer {
    padding-bottom: 20px !important;
    margin-bottom: -20px !important;
    overflow: hidden !important;
}

.osk-product-card a {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.osk-product-img {
    position: relative;
    overflow: hidden;
}

.osk-product-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.osk-product-card:hover .osk-product-img img {
    transform: scale(1.07);
}

.osk-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 60, 52, .74);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.osk-product-card:hover .osk-product-overlay {
    opacity: 1;
}

.osk-product-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
}

.osk-product-info {
    padding: 18px 20px 20px;
}

.osk-product-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--g);
    margin-bottom: 4px;
}

.osk-product-info small {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   FEATURES (dark green)
   ===================================================== */
section.osk-features {
    padding: 100px 0 !important;
    background: var(--g) !important;
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
    clear: both !important;
}

.osk-feat-card-wrap {
    padding: 10px;
}

.osk-feat-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 30px;
}

.osk-feat-card:hover {
    background: rgba(255, 255, 255, .12) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.osk-feat-icon {
    width: 72px;
    height: 72px;
    background: var(--gold) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.osk-feat-icon i {
    font-size: 30px !important;
    color: #fff !important;
}

.osk-feat-card h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.osk-feat-card p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, .8) !important;
    line-height: 1.75;
    margin: 0;
}

/* =====================================================
   SERVICES
   ===================================================== */
section.osk-services {
    padding: 88px 0 !important;
    background: var(--bg) !important;
    display: block !important;
    width: 100%;
    clear: both;
}

.osk-services-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-service-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    background: #fff;
    transition: box-shadow .3s, transform .3s;
    margin: 0 8px 20px;
}

.osk-service-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}

.osk-service-card a {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.osk-service-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.osk-service-card:hover .osk-service-img img {
    transform: scale(1.05);
}

.osk-service-info {
    padding: 22px 24px 26px;
}

.osk-service-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--g);
    margin-bottom: 10px;
}

.osk-service-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.osk-read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =====================================================
   CTA
   ===================================================== */
section.osk-cta {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, var(--gd) 0%, var(--g) 100%) !important;
    display: block !important;
    width: 100%;
    clear: both;
}

.osk-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}

.osk-cta-text h2 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.osk-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.osk-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =====================================================
   REFERENCES
   ===================================================== */
section.osk-references {
    padding: 72px 0 !important;
    background: #fff !important;
    display: block !important;
    width: 100%;
    clear: both;
}

.osk-ref-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-ref-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(.5);
    opacity: .75;
    transition: all .3s;
}

.osk-ref-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.osk-ref-item img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer.osk-footer {
    display: block !important;
    width: 100% !important;
    background: #081d19 !important;
    position: relative !important;
    clear: both !important;
}

.osk-footer-topbar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--g), var(--gold));
    display: block;
}

.osk-footer-main {

    background: #0d2520 !important;
    padding: 80px 0 60px !important;
    display: block !important;
    width: 100% !important;
}

.osk-footer-main .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.osk-footer-col {
    margin-bottom: 36px;
    text-align: left;
}

.osk-footer-brand p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, .62) !important;
    line-height: 1.85;
    margin: 18px 0 22px;
}

.osk-footer-logo {
    max-height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.osk-footer-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.osk-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .65) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none !important;
    transition: all .3s;
}

.osk-footer-social a:hover {
    border-color: var(--gold) !important;
    background: var(--gold);
    color: #fff !important;
}

.osk-footer-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold) !important;
    display: inline-block;
}

.osk-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-footer-links li {
    margin-bottom: 8px;
}

.osk-footer-links a {
    font-size: 13px !important;
    color: rgba(255, 255, 255, .58) !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s, padding-left .2s;
}

.osk-footer-links a:hover {
    color: var(--gold) !important;
    padding-left: 4px;
}

.osk-footer-links a i {
    font-size: 10px;
    color: var(--gold);
}

.osk-footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 22px !important;
}

.osk-footer-contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 13px;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.osk-footer-contact i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.osk-footer-contact span,
.osk-footer-contact a {
    color: rgba(255, 255, 255, .65) !important;
    text-decoration: none !important;
    transition: color .2s;
}

.osk-footer-contact a:hover {
    color: var(--gold) !important;
}

.osk-footer-cta {
    display: inline-block !important;
    background: var(--gold) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px;
    padding: 11px 26px !important;
    border-radius: 4px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background .3s;
}

.osk-footer-cta:hover {
    background: var(--goldd) !important;
    color: #fff !important;
}

.osk-footer-bottom {
    background: #051210 !important;
    border-top: 1px solid rgba(255, 255, 255, .06) !important;
    padding: 20px 0 !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.osk-footer-bottom .row {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.osk-footer-bottom p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.42) !important;
    margin: 0 !important;
    line-height: 2.4;
}

.osk-footer-bottom a {
    color: var(--gold) !important;
    text-decoration: none !important;
}

.osk-footer-bottom a:hover {
    color: #fff !important;
}

.osk-footer-bottom .text-md-right {
    text-align: right !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

/* =====================================================
   PAGE HEADER & BREADCRUMB
   ===================================================== */
.osk-page-header {
    background-color: var(--g);
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0 80px !important;
    color: #fff !important;
    position: relative;
    text-align: center;
}

.osk-page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 28, 22, 0.7);
    z-index: 1;
}

.osk-page-header-content {
    position: relative;
    z-index: 2;
}

.osk-page-header h1 {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.osk-breadcrumb {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.osk-breadcrumb li {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.osk-breadcrumb li a {
    color: #fff !important;
    transition: color 0.3s;
}

.osk-breadcrumb li a:hover {
    color: var(--gold) !important;
}

.osk-breadcrumb li i {
    font-size: 12px !important;
    color: var(--gold) !important;
    opacity: .5;
}

/* =====================================================
   CATEGORY & PRODUCT CONTENT
   ===================================================== */
.osk-category-content {
    padding-bottom: 80px;
}

.osk-category-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* =====================================================
   CONTACT & QUOTE FORMS
   ===================================================== */
.osk-contact-form-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    max-width: 800px;
    margin: 0 auto 60px !important;
    position: relative;
    z-index: 5;
}

.osk-form-group {
    margin-bottom: 25px;
}

.osk-form-control {
    height: 54px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    font-size: 15px;
    transition: all .3s;
    width: 100%;
}

textarea.osk-form-control {
    height: 150px !important;
    padding-top: 15px;
}

.osk-contact-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px 20px !important;
    text-align: center !important;
    border-radius: 12px;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.osk-contact-card i {
    font-size: 28px !important;
    color: var(--gold) !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* =====================================================
   INFORMATION PAGES
   ===================================================== */
.content-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.content-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 60, 52, 0.85), rgba(26, 60, 52, 0.7));
}

.content-header .container {
    position: relative;
    z-index: 5;
    text-align: center;
}

.content-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
    font-family: 'Barlow', sans-serif;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ortaalan {
    padding-bottom: 80px;
}

.content-text {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
}

.content-text p {
    margin-bottom: 20px;
}

/* =====================================================
   HOTLINE / WHATSAPP
   ===================================================== */
.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 80px;
    left: 18px;
    z-index: 9999;
}

.hotline-phone-ring {
    position: relative;
    width: 60px;
    height: 60px;
}

.hotline-phone-ring-circle,
.hotline-phone-ring-circle-fill {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.hotline-phone-ring-circle {
    background: rgba(37, 211, 102, .2);
    animation: phoneRing 1.5s infinite;
}

.hotline-phone-ring-circle-fill {
    background: rgba(37, 211, 102, .15);
}

@keyframes phoneRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hotline-phone-ring-img-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 5px;
    left: 5px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-img-circle a {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hotline-bar {
    background: #25d366;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    white-space: nowrap;
    margin-top: 6px;
}

.hotline-bar a {
    color: #fff !important;
    text-decoration: none !important;
}

/* =====================================================
   GALLERY
   ===================================================== */
.osk-gallery-img {
    position: relative;
    overflow: hidden;
}

.osk-gallery-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.osk-gallery-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 52, 0.55);
    opacity: 0;
    transition: opacity 0.3s;
}

.osk-gallery-img:hover .osk-gallery-overlay,
.osk-gallery-item:hover .osk-gallery-overlay {
    opacity: 1;
}

.osk-gallery-overlay i {
    color: #fff;
    font-size: 24px;
}

/* =====================================================
   UTILITY
   ===================================================== */
.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* =====================================================
   DESKTOP (min-width: 992px)
   ===================================================== */
@media (min-width: 992px) {
    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        gap: 20px !important;
    }

    .main-manu {
        display: block !important;
        margin-left: auto !important;
    }

    #close {
        display: none !important;
    }
}

/* =====================================================
   MOBILE (max-width: 991px)
   ===================================================== */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .container,
    .container-fluid {
        /* padding-left: 15px !important; */
        /* padding-right: 15px !important; */
        box-sizing: border-box !important;
    }

    /* --- Utility --- */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobilnone {
        display: none !important;
    }

    /* --- Header Top --- */
    .header-top {
        display: none !important;
    }

    /* --- Header --- */
    .header-flex {
        height: 70px !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
        /* flex-wrap: wrap !important; */
        /* margin-top: 10px !important; */
    }

    #close {
        display: inline-flex !important;
        order: 2 !important;
        width: 44px !important;
        height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--g) !important;
        color: #fff !important;
        border-radius: 4px !important;
        font-size: 20px !important;
        margin: 0 !important;
        position: static !important;
    }

    .header-language {
        order: 1 !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .header-language img {
        width: 22px !important;
        height: 22px !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }

    /* --- Mobile Menu Drawer --- */
    .main-manu {
        position: fixed !important;
        top: 0 !important;
        left: -101% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #fff !important;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
        transition: left 0.4s ease-in-out !important;
        z-index: 100001 !important;
        overflow-y: auto !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: hidden !important;
    }

    .main-manu.open {
        left: 0 !important;
        visibility: visible !important;
    }

    .mobile-menu-header {
        display: flex !important;
        background: #fff !important;
        border-bottom: 2px solid var(--g) !important;
        margin: 0 !important;
    }

    .main-manu ul {
        flex-direction: column !important;
        padding: 20px !important;
        align-items: flex-start !important;
        margin: 0 !important;
        display: flex !important;
    }

    .main-manu li {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
        list-style: none !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-manu li a {
        display: block !important;
        padding: 15px 20px !important;
        color: var(--g) !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        text-align: left !important;
    }

    /* Submenu */
    .main-manu ul ul {
        display: none;
        padding-left: 15px !important;
        background: #f9f9f9 !important;
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-manu li.active-submenu>ul {
        display: block !important;
    }

    .main-manu ul ul li a {
        padding-left: 40px !important;
        font-size: 14px !important;
        background: #f9f9f9 !important;
    }

    .main-manu li.has-children>a::after {
        content: " \f107";
        font-family: FontAwesome;
        float: right;
        transition: transform 0.3s;
    }

    .main-manu li.active-submenu>a::after {
        transform: rotate(180deg);
    }

    .main-manu li.mobile-only,
    .main-manu ul li.mobilmenuon {
        display: block !important;
    }

    /* --- Slider --- */
    .osk-slide-item {
        min-height: 420px !important;
    }

    .osk-slide-text h1 {
        font-size: 30px !important;
        letter-spacing: -0.5px !important;
        line-height: 1.15 !important;
    }

    .osk-slide-text p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin-bottom: 20px !important;
    }

    /* --- Features --- */
    section.osk-features .row {
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .osk-feat-card {
        text-align: center !important;
        margin: 0 auto 30px !important;
        width: 100% !important;
        max-width: 400px !important;
    }

    /* --- Gallery --- */
    .osk-gallery .row {
        margin: 0 !important;
    }

    .osk-gallery [class*="col-"] {
        padding: 0 8px !important;
        margin-bottom: 16px !important;
        width: 50% !important;
        float: left !important;
        box-sizing: border-box !important;
    }

    .osk-gallery-item {
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .osk-gallery-img img {
        height: 160px !important;
    }

    /* --- Contact Form --- */
    .osk-contact-form-card {
        padding: 30px 15px !important;
        width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #eee !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
    }

    .osk-captcha-wrap {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .osk-captcha-wrap img {
        margin-bottom: 10px !important;
        max-width: 100% !important;
    }

    .osk-captcha-wrap input {
        width: 100% !important;
    }

    /* --- Footer --- */
    footer.osk-footer .osk-footer-main {
        padding: 30px 0 20px !important;
        overflow-x: hidden !important;
        width: 100% !important;
        display: block !important;
    }

    footer.osk-footer .row {
        flex-direction: column !important;
        align-items: center !important;
        display: flex !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    footer.osk-footer .osk-footer-col,
    footer.osk-footer [class*="col-"] {
        width: 100% !important;
        float: none !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* margin-bottom: 36px !important; */
        padding: 0 20px !important;
    }

    footer.osk-footer .osk-footer-brand {
        padding-right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    footer.osk-footer .osk-footer-logo {
        margin: 0 auto 16px !important;
        display: block !important;
    }

    footer.osk-footer .osk-footer-brand p {
        text-align: center !important;
    }

    footer.osk-footer .osk-footer-social {
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }

    footer.osk-footer .osk-footer-title {
        display: table !important;
        text-align: center !important;
        width: auto !important;
        margin: 0 auto 20px !important;
    }

    footer.osk-footer .osk-footer-links li,
    footer.osk-footer .osk-footer-contact li {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    footer.osk-footer .osk-footer-links a {
        justify-content: center !important;
    }

    footer.osk-footer .osk-footer-links li i,
    footer.osk-footer .osk-footer-contact li i {
        display: none !important;
    }

    .osk-footer-bottom {
        padding: 10px 0 !important;
        min-height: 0 !important;
        height: auto !important;
    }

    .osk-footer-bottom .container {
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .osk-footer-bottom .row {
        display: block !important;
        text-align: center !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .osk-footer-bottom [class*="col-"] {
        width: 100% !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        float: none !important;
    }

    .osk-footer-bottom p {
        text-align: center !important;
        margin: 0 0 4px 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    .osk-footer-bottom a,
    .osk-footer-bottom img {
        display: inline-block !important;
        margin: 0 auto !important;
        vertical-align: middle !important;
    }

    .osk-text-content {
        margin-top: 30px !important;
    }

    /* --- CTA Section --- */


    .osk-cta-inner {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .osk-cta-actions {
        justify-content: center !important;
        width: 100% !important;
    }

    /* --- Features Section --- */
    .osk-features [class*="col-"] {
        padding: 0 20px 30px !important;
        width: 100% !important;
        display: block !important;
        float: none !important;
    }

    .osk-feat-card {
        margin: 0 !important;
        width: 100% !important;
    }

    .osk-why-content {
        padding-left: 30px !important;
        padding-right: 30px !important;
        margin-top: 40px;
    }

    .osk-why-content p {
        text-align: justify !important;
    }

    /* --- Page Content --- */
    .osk-page-content,
    .content,
    #content,
    .information-information #content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}