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

:root {
    --gold: #D4AF37;
    --gold-dark: #B8962E;
    --charcoal: #2D2D2D;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --bg: #fafafa;
    --white: #fff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth
}

body {
    font-family: 'Noto Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2
}

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

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

ul {
    list-style: none
}

section {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06)
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

/* Header scrolled durumunda logo filtresi kaldır */
.header.scrolled .logo-img {
    filter: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 4px
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 6px
}

.nav-list {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px
}

.nav-link {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition)
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15)
}

.nav-link.active {
    color: var(--charcoal);
    background: var(--white)
}

/* Header scrolled durumunda menü renkleri */
.header.scrolled .nav-link {
    color: var(--charcoal);
}

.header.scrolled .nav-link:hover {
    background: rgba(0, 0, 0, 0.04)
}

.header.scrolled .nav-link.active {
    color: var(--white);
    background: var(--charcoal)
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3)
}

.header.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
    box-shadow: none
}

/* Mobil menü açık durumu */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.page-dots {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition)
}

.page-dot.active {
    background: var(--gold);
    transform: scale(1.4)
}

.section-header {
    margin-bottom: 40px
}

.section-line {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 18px
}

.section-title-en {
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -1px
}

.section-title-outline {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    letter-spacing: -2px
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--white)
}

.btn-gold svg {
    width: 18px;
    height: 18px;
    transition: var(--transition)
}

.btn-gold:hover svg {
    transform: translateX(4px)
}

.btn-gold-lg {
    padding: 20px 50px;
    font-size: 16px
}

.hero {
    height: 100vh;
    background: var(--charcoal);
    position: relative
}

/* Hero Video Styles */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Video kalitesini artırmak için */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 700px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 40px rgba(0, 0, 0, 0.3)
}

.hero-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease
}

.hero-slide.active {
    opacity: 1;
    visibility: visible
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: center/cover no-repeat;
    background-color: #1a1a1a;
}

/* Slider Loading Placeholder */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-bg.loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 700px
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 40px rgba(0, 0, 0, 0.3)
}

.hero-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(10px)
}

.hero-thumbnails {
    position: absolute;
    bottom: 150px;
    right: 80px;
    display: flex;
    gap: 15px;
    z-index: 10
}

.hero-thumb {
    width: 140px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.hero-thumb:hover,
.hero-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    transform: translateY(-8px)
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px)
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    border-color: var(--gold)
}

.hero-prev svg,
.hero-next svg {
    width: 20px;
    height: 20px;
    stroke: var(--white)
}

.hero-dots {
    display: flex;
    gap: 10px
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition)
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.2)
}

.about {
    background: url('assets/aa9ff1b67680cd9933ab70651f626d0f70c1a80f.jpg') center/cover no-repeat;
    padding: 0 60px
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.about-content {
    position: relative;
    z-index: 1
}

.about-slogan {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic
}

.about-company {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px
}

.quote-mark {
    font-size: 80px;
    color: var(--gold);
    line-height: 0.7;
    font-family: Georgia, serif
}

.about-company h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal)
}

.about-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 50px
}

.about-license {
    color: var(--gold);
    font-weight: 600
}

.about-stats {
    display: flex;
    gap: 60px
}

.stat-item {
    text-align: left
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1
}

.stat-number sub {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-light)
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    display: block
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12)
}

.about-image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 16px;
    z-index: -1
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/aa9ff1b67680cd9933ab70651f626d0f70c1a80f.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.15
}

.products {
    background: url('assets/c92b16becc7789049ea733af6ea71e22354b58f3.jpg') center/cover no-repeat;
    padding: 0 60px
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px;
    align-items: center
}

.products-left {
    position: relative;
    z-index: 1
}

.product-categories {
    margin: 35px 0
}

.product-cat {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent
}

.product-cat:hover,
.product-cat.active {
    color: var(--gold);
    border-left-color: var(--gold)
}

.products-right {
    position: relative
}

.product-slider {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1)
}

.product-slide {
    display: none;
    position: relative
}

.product-slide.active {
    display: block
}

.product-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.product-name {
    color: var(--white);
    font-size: 22px;
    font-weight: 700
}

.product-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px
}

.product-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -25px;
    pointer-events: none
}

.product-prev,
.product-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -27px
}

.product-next {
    left: auto;
    right: -27px
}

.product-prev svg,
.product-next svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal)
}

.product-prev:hover,
.product-next:hover {
    background: var(--gold);
    transform: scale(1.1)
}

.product-prev:hover svg,
.product-next:hover svg {
    stroke: var(--white)
}

.products-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/c92b16becc7789049ea733af6ea71e22354b58f3.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.15
}

.why-us {
    background: url('assets/e15c393cbea67f9e759e00471af9bb545af18a10.jpg') center/cover no-repeat;
    padding: 0 60px
}

.why-us-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 100px
}

.why-us-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 35px
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold)
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold)
}

.feature-icon svg {
    width: 40px;
    height: 40px
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8
}

.img-showcase {
    padding: 60px 60px;
    background: var(--white)
}

.img-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.img-showcase-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative
}

.img-showcase-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: var(--transition)
}

.img-showcase-item:hover img {
    transform: scale(1.04)
}

.strength {
    background: url('assets/6383051d37864e394ae20da2890889dd8fc8b5d8.jpg') center/cover no-repeat;
    padding: 0 60px
}

.strength-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center
}

.strength-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 30px
}

.strength-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px
}

.strength-stat {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    display: block
}

.stat-txt {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px
}

.strength-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px
}

.strength-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative
}

.strength-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.strength-img:hover img {
    transform: scale(1.08)
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-size: 14px;
    font-weight: 500
}

.video-center {
    background: url('assets/a67256f8f01a4664f7639aee3c20354d5e1b28b0.jpg') center/cover no-repeat;
    padding: 0 60px;
    position: relative
}

.video-arch {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 100px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border-bottom-color: transparent;
    z-index: 0;
    pointer-events: none
}

.video-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px;
    align-items: start;
    z-index: 1;
}

.video-left {
    position: relative;
    z-index: 1;
}

.video-categories {
    margin: 35px 0;
}

.video-cat {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
}

.video-cat:hover,
.video-cat.active {
    color: var(--gold);
    border-left-color: var(--gold);
}

.video-right {
    position: relative;
}

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

.video-item-inline {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.video-item-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-item-inline video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-name {
    display: block;
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    background: var(--white);
}

@keyframes globe-rotate {
    from {
        transform: translateY(-50%) rotate(0deg)
    }

    to {
        transform: translateY(-50%) rotate(360deg)
    }
}

.news {
    background: var(--bg);
    padding: 0 60px;
}

.news-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 100px;
    align-items: start;
    z-index: 1;
}

.news-left {
    position: relative;
    z-index: 1;
}

.news-categories {
    margin: 35px 0;
}

.news-cat {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    border-left: 3px solid transparent;
}

.news-cat:hover,
.news-cat.active {
    color: var(--gold);
    border-left-color: var(--gold);
}

.news-right {
    position: relative;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-thumb {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-thumb img {
    transform: scale(1.1);
}

.news-body {
    display: flex;
    gap: 25px;
    padding: 25px 25px 25px 0;
    flex: 1;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    height: fit-content;
    min-width: 80px;
}

.news-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.news-month {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    transition: var(--transition);
}

.news-item:hover .news-content h4 {
    color: var(--gold);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.news-more:hover {
    gap: 12px;
}

.news-more svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.contact-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    z-index: 1
}

.contact .section-title-en {
    color: var(--gold)
}

.contact .section-title-outline {
    color: var(--dark);
    -webkit-text-stroke: 0;
    font-family: 'Noto Serif SC', serif;
    margin-bottom: 30px
}

.contact-text {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
    margin-bottom: 35px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold)
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.contact-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500
}

.footer {
    background: #1a1a1a;
    padding: 60px;
    min-height: auto
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px
}

.footer-brand {
    max-width: 300px
}

.footer-brand .logo-text {
    font-size: 24px;
    margin-bottom: 4px
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    display: block
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7
}

.footer-links {
    display: flex;
    gap: 80px
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: var(--transition)
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-social {
    display: flex;
    gap: 12px
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--gold)
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white)
}

.footer-bottom {
    text-align: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px
}

@media(max-width:1200px) {

    .about-container,
    .why-us-container,
    .strength-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .products-container,
    .video-container,
    .news-container {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .header {
        padding: 15px 30px
    }

    .about,
    .products,
    .why-us,
    .img-showcase,
    .strength,
    .video-center,
    .news,
    .contact {
        padding: 0 30px
    }

    .img-showcase {
        padding: 40px 30px
    }

    .img-showcase-container {
        grid-template-columns: 1fr
    }

    .img-showcase-item img {
        height: 280px
    }

    section {
        min-height: auto;
        padding: 100px 0
    }

    html {
        scroll-snap-type: none
    }

    .footer-top {
        flex-direction: column;
        gap: 40px
    }

    .footer-links {
        gap: 40px
    }
}

@media(max-width:768px) {
    .header {
        padding: 15px 20px
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background: none;
        backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 18px 40px;
        font-size: 18px;
        color: var(--white);
        border-radius: 0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
        background: transparent;
    }

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

    /* Slider butonlarını mobilde gizle, sadece dots göster */
    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-slider-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }

    .hero-dots {
        gap: 12px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .page-dots {
        display: none
    }

    .hero-content {
        left: 5%;
        right: 5%;
        padding: 0;
        max-width: none
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-scroll-indicator {
        bottom: 30px;
        font-size: 11px;
    }

    .hero-scroll-indicator svg {
        width: 20px;
        height: 20px;
    }

    .hero-thumbnails {
        display: none
    }

    .hero-slider-nav {
        left: 5%
    }

    .about,
    .products,
    .why-us,
    .strength,
    .video-center,
    .news,
    .contact {
        padding: 0 20px
    }

    .about-stats {
        flex-direction: column;
        gap: 30px
    }

    .stat-number {
        font-size: 36px
    }

    .strength-stats {
        flex-wrap: wrap
    }

    .video-grid {
        grid-template-columns: 1fr
    }

    .strength-gallery {
        grid-template-columns: 1fr
    }

    .strength-img.large {
        grid-row: auto
    }

    .news-item {
        flex-direction: column
    }

    .news-thumb {
        width: 100%;
        height: 200px
    }

    .news-body {
        flex-direction: column;
        gap: 15px
    }

    .news-date {
        text-align: left;
        display: flex;
        gap: 10px;
        align-items: baseline
    }

    .feature-item {
        flex-direction: column;
        text-align: center
    }

    .feature-icon {
        margin: 0 auto
    }

    .contact-info {
        padding: 25px
    }

    .footer {
        padding: 40px 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-brand {
        text-align: center
    }

    .footer-social {
        justify-content: center
    }
}

.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    padding: 80px 60px 40px;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
    background-size: 200% 100%;
    animation: shimmer 3s ease infinite
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-logo-icon svg {
    width: 28px;
    height: 28px;
    color: #1a1a1a
}

.footer-logo-text {
    display: flex;
    flex-direction: column
}

.footer-logo-text span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #D4AF37;
    letter-spacing: 2px
}

.footer-logo-text span:last-child {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px
}

.footer-brand>p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease
}

.footer-social a:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-3px)
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7)
}

.footer-social a:hover svg {
    fill: #1a1a1a
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-links li,
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px
}

.footer-links li svg {
    width: 16px;
    height: 16px;
    color: #D4AF37;
    flex-shrink: 0
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4)
}

.footer-bottom-links {
    display: flex;
    gap: 30px
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease
}

.footer-bottom-links a:hover {
    color: #D4AF37
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 40px 30px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 25px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .footer-brand {
        text-align: center;
        align-items: center
    }

    .footer-brand>p {
        max-width: 100%
    }

    .footer-social {
        justify-content: center
    }

    .footer-col h5::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .footer-col {
        text-align: center
    }

    .footer-links li,
    .footer-links a {
        justify-content: center
    }

    .footer-links a:hover {
        padding-left: 0
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}