/* Temel Değişkenler */
:root {
    --dark-gold: #B8860B;
    --gold: #DAA520;
    --light-gold: #FFD700;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --transition: all 0.3s ease;
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes border-glow {
    0% { box-shadow: 0 0 5px var(--gold); }
    50% { box-shadow: 0 0 20px var(--gold); }
    100% { box-shadow: 0 0 5px var(--gold); }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rotating-logo {
    animation: spin 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    75% { transform: rotate(1080deg); }
    100% { transform: rotate(1080deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(184,134,11,0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gold);
    background: linear-gradient(to right, var(--dark-gold), var(--gold), var(--dark-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dark-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 1200px;
    z-index: 2;
    color: var(--light-gray);
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border: none;
    padding: 1rem 2.5rem;
    color: var(--black);
    font-weight: 600;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184,134,11,0.3);
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Utility Classes */
.shimmer-text {
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--gold) 50%, var(--dark-gold) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.scale-animation {
    animation: scale 3s ease-in-out infinite;
}

.glow {
    animation: border-glow 2s ease-in-out infinite;
}

/* Mouse Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Galeri Stiller */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(26,26,26,0.9));
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: var(--transition);
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184,134,11,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: white;
    font-size: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.gallery-zoom {
    color: white;
    font-size: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    background: rgba(0,0,0,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-zoom:hover {
    background: rgba(0,0,0,0.4);
    transform: scale(1.1);
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-description,
.gallery-item:hover .gallery-zoom {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Stiller */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.modal-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.gallery-modal.active .modal-caption {
    opacity: 1;
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.gallery-modal.active .modal-close {
    opacity: 1;
    transform: rotate(0);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
    background: rgba(0,0,0,0.8);
}

.modal-nav {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

.modal-prev {
    left: 20px;
    transform: translateX(-50px);
}

.modal-next {
    right: 20px;
    transform: translateX(50px);
}

.gallery-modal.active .modal-prev,
.gallery-modal.active .modal-next {
    transform: translateX(0);
}

.modal-nav:hover {
    color: var(--gold);
    background: rgba(0,0,0,0.8);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .modal-nav {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
    }

    .modal-caption {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: rgba(184,134,11,0.7);
    }

    .gallery-title,
    .gallery-description,
    .gallery-zoom {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Sayaç Stilleri */
.stat-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray);
}

.stat-number.completed {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Parallax için */
.stats-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    will-change: transform;
}
/* Mouse Efektleri (Masaüstü) */
@media (hover: hover) {
    *:not(input, textarea) {
        cursor: none !important;
    }

    .cursor-main-mahsunaltun {
        width: 10px;
        height: 10px;
        background-color: var(--gold);
        border-radius: 50%;
        position: fixed;
        top: -5px;
        left: -5px;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    }

    .cursor-trail-mahsunaltun {
        width: 30px;
        height: 30px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        position: fixed;
        top: -15px;
        left: -15px;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    }

    .cursor-glow-mahsunaltun {
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(218,165,32,0.3) 0%, rgba(218,165,32,0) 70%);
        border-radius: 50%;
        position: fixed;
        top: -25px;
        left: -25px;
        pointer-events: none;
        z-index: 9997;
        transition: transform 0.5s ease;
    }

    .cursor-hover-mahsunaltun {
        transform: scale(1.5);
    }
}

/* Mobil Touch Efektleri */
@media (hover: none) {
    /* Cursor elementlerini gizle */
    .cursor-main-mahsunaltun,
    .cursor-trail-mahsunaltun,
    .cursor-glow-mahsunaltun {
        display: none;
    }

    /* Touch Ripple Container */
    .touch-ripple-container-mahsunaltun {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
        overflow: hidden;
    }

    /* Touch Ripple Effect */
    .touch-ripple-mahsunaltun {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        animation: ripple-mahsunaltun 1s ease-out forwards;
        pointer-events: none;
    }

    /* Touch Active State */
    .touch-active-mahsunaltun {
        transform: scale(0.97) !important;
        transition: transform 0.2s ease !important;
    }

    /* Interactive Elements Hover */
    a:active,
    button:active,
    .nav-link:active,
    .gallery-item:active,
    .service-card:active,
    .btn:active {
        transform: scale(0.97);
        transition: transform 0.2s ease;
    }
}

/* Ripple Animation */
@keyframes ripple-mahsunaltun {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Genel İnteraktif Element Stilleri */
a, button, .nav-link, .gallery-item, .service-card, .btn {
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #daa520, 0 0 10px #daa520, 0 0 15px #daa520, 0 0 20px #daa520;
    }
    100% {
        box-shadow: 0 0 20px #daa520, 0 0 30px #daa520, 0 0 40px #daa520, 0 0 50px #daa520;
    }
}
/* Sayfa Banner Stili */
.page-banner {
    position: relative;
    height: 300px;
    background: url('../img/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 76px; /* Navbar yüksekliği kadar margin */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    color: #fff;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold);
}

/* Ana İçerik Stili */
.about-section {
    padding: 100px 0;
    background: var(--black);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
}

/* İçerik Yazı Stilleri */
.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Özellik Kartları */
.feature-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-item p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* İstatistik Kartları */
.stats-row {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 3rem 0;
}

.stat-item {
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* Neden Biz Kartları */
.reason-card {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

.reason-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--gold);
    transform: rotateY(180deg);
}

.reason-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.reason-card p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .page-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: 10px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .stats-row {
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        height: 200px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .experience-badge {
        bottom: 20px;
    }

    .stat-item {
        padding: 1rem;
    }
}

/* Özel Efektler */
.text-gold {
    color: var(--gold) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.5)!important;
}

.about-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}
/* Sayaç animasyonları için ek stiller */
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Sayı formatı için stil */
.stat-number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Sayaç ikonu animasyonu */
.stat-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* misyon */

/* Misyon & Vizyon Sayfası Stilleri */

/* Genel Bölüm Stili */
.mission-vision-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

/* Misyon ve Vizyon Kartları */
.mission-card,
.vision-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218,165,32,0.1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(218,165,32,0.1);
}

/* Kart Başlıkları */
.mission-card h2,
.vision-card h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin: 1.5rem 0;
    font-weight: 600;
}

/* İkon Stilleri */
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 2rem;
    color: var(--black);
}

/* Ayraç Çizgisi */
.content-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem 0;
    position: relative;
}

.content-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.mission-card:hover .content-divider::before,
.vision-card:hover .content-divider::before {
    transform: scaleX(2);
    transform-origin: left;
}

/* Liste Stilleri */
.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.mission-list li,
.vision-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-list li:hover,
.vision-list li:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}

.mission-list i,
.vision-list i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.mission-list span,
.vision-list span {
    color: rgba(255,255,255,0.9);
}

/* Paragraf Stilleri */
.mission-card p,
.vision-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Değerlerimiz Bölümü */
.values-row {
    margin-top: 4rem;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(218,165,32,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.value-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(218,165,32,0.5); }
    50% { box-shadow: 0 0 20px rgba(218,165,32,0.5); }
    100% { box-shadow: 0 0 5px rgba(218,165,32,0.5); }
}

/* Başlık Stilleri */
.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .mission-card,
    .vision-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }

    .value-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .card-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i,
    .value-icon i {
        font-size: 1.5rem;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.8rem;
    }
}

/* Hover Efektleri */
.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(218,165,32,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: translateX(100%);
}

/* Arka Plan Desenler */
.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(218,165,32,0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Kalite Politikası Sayfası Stilleri */
.quality-policy-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Üst Kısım Stilleri */
.quality-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.quality-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.quality-image:hover img {
    transform: scale(1.05);
}

.quality-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gold);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.certification-badge {
    width: 80%;
    height: auto;
}

/* İçerik Stilleri */
.quality-content {
    padding: 2rem;
}

.subtitle {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.quality-features {
    margin-top: 2rem;
}

.quality-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.05);
}

.quality-feature i {
    color: var(--gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.quality-feature span {
    color: #fff;
}

/* Kalite Kartları */
.quality-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(218,165,32,0.1);
}

.quality-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(218,165,32,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.quality-card:hover .card-icon {
    transform: rotateY(180deg);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.quality-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.quality-list li::before {
    content: '→';
    color: var(--gold);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.quality-card:hover .quality-list li::before {
    left: 5px;
}

/* Kalite Hedefleri */
.quality-goals {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 3rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.goal-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.goal-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.goal-content h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.goal-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .quality-policy-section {
        padding: 60px 0;
    }

    .quality-image {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quality-badge {
        width: 100px;
        height: 100px;
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .quality-card {
        margin-bottom: 2rem;
    }

    .goal-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .goal-icon {
        margin: 0 0 1rem 0;
    }
}
/* Belgelerimiz Sayfası Stilleri */
.certificates-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

/* Üst Bilgi Alanı */
.section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Sertifika Kartları */
.certificates-grid {
    margin-top: 3rem;
}

.certificate-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(218,165,32,0.1);
}

.certificate-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(218,165,32,0.1);
}

/* Sertifika Görsel Alanı */
.certificate-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.1);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.view-certificate {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.certificate-card:hover .view-certificate {
    transform: scale(1);
}

/* Sertifika İçerik Alanı */
.certificate-content {
    padding: 2rem;
    text-align: center;
}

.certificate-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
    transform: rotateY(180deg);
}

.certificate-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.certificate-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certificate-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.certificate-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.certificate-details span {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certificate-details i {
    color: var(--gold);
}

/* Modal Styles */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    padding: 2rem;
}

.certificate-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.modal-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(218,165,32,0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(218,165,32,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .certificates-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .certificate-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .certificate-details span {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
    }
}
/* Hizmetler Showcase Stili */
.services-showcase {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Ana Hizmet Kartı */
.service-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(218,165,32,0.1);
    position: relative;
    overflow: hidden;
}

.service-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(218,165,32,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-main:hover::before {
    transform: translateX(100%);
}

.service-main-content {
    padding: 30px;
}

.service-main-content h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-main-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.service-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.service-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-main:hover .service-main-image img {
    transform: scale(1.05);
}

/* Hizmet Kartları Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Hizmet Kartı */
.service-card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(218,165,32,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.card-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Hizmet Özellikleri */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Teknik Özellikler */
.service-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.spec-item {
    text-align: center;
}

.spec-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.spec-value {
    color: var(--gold);
    font-weight: 500;
}

/* Hover Efekti */
.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.service-card:hover .card-hover {
    opacity: 1;
    transform: scale(1);
}

.details-btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Üretim Süreçleri */
.production-steps {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--black), rgba(26,26,26,0.95));
    position: relative;
}

.steps-timeline {
    position: relative;
    padding: 60px 0;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: translateY(-50%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
    width: 250px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: bold;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.step-content {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(218,165,32,0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.step-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .service-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .timeline-progress {
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .service-main-content h2 {
        font-size: 2.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}
/* Galeri Sayfası Ana Stilleri */
.gallery-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/gallery-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
}

/* Galeri Filtreleme */
.gallery-filter-wrapper {
    padding: 30px 0;
    background: var(--black);
    border-bottom: 1px solid rgba(218,165,32,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Galeri Grid */
.gallery-showcase {
    padding: 80px 0;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.gallery-item {
    perspective: 1000px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Galeri Kart Stilleri */
.gallery-card {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.gallery-item:hover .gallery-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.card-front {
    background: var(--dark-gray);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-back {
    background: linear-gradient(145deg, var(--dark-gold), var(--gold));
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .item-overlay {
    transform: translateY(0);
}

.item-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.item-details h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

/* Kart Arka Yüz */
.back-content {
    color: var(--black);
}

.back-content h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.back-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.back-content li {
    margin-bottom: 10px;
}

.view-details {
    background: var(--black);
    color: var(--gold);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Modal Styles */
.showcase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    background: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.showcase-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Stats Section */
.gallery-stats {
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
   
    height: 100%;
    background: url('../img/hakkimizda/hakkimizda.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218,165,32,0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Kategori Kartları */
.category-showcase {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--black), rgba(26,26,26,0.95));
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-filter-wrapper {
        top: 60px;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-btn {
        width: calc(50% - 10px);
    }
}

/* Animasyonlar */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}
/* İletişim Sayfası Stilleri */
.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/contact-banner.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
}

/* İletişim Bilgi Kartları */
.contact-info-cards {
    margin-top: -100px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(218,165,32,0.1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    transform: rotateY(180deg);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--black);
}

.info-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #fff;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* İletişim Formu */
.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(218,165,32,0.1);
}

.contact-form-wrapper h2 {
    color: var(--gold);
    margin-bottom: 10px;
}

.form-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(218,165,32,0.1);
    color: #fff;
    padding: 15px;
    height: auto;
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    box-shadow: none;
    color: #fff;
}

.form-floating label {
    color: rgba(255,255,255,0.6);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--gold);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-check-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.submit-btn {
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: var(--black);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218,165,32,0.2);
}

/* Harita */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.map-container {
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.map-overlay:hover {
    background: rgba(0,0,0,0.9);
}

.overlay-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.direction-link:hover {
    color: #fff;
    gap: 15px;
}

/* Özellik Kartları */
.contact-features {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--black), rgba(26,26,26,0.95));
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(218,165,32,0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--black);
}

.feature-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Form Validasyon Stilleri */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--gold);
    background-image: none;
}

/* Loading Spinner */
.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--black);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-info-cards {
        margin-top: 50px;
    }

    .info-card {
        margin-bottom: 30px;
    }

    .map-wrapper {
        margin-top: 30px;
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-banner {
        height: 300px;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    .submit-btn {
        padding: 12px 30px;
    }
}
.kvkk-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    overflow-y: auto;
}

.kvkk-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    background: var(--black);
    border-radius: 20px;
    border: 1px solid rgba(218,165,32,0.1);
    overflow: hidden;
}

.kvkk-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(218,165,32,0.1);
    background: rgba(255,255,255,0.02);
}

.kvkk-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kvkk-title i {
    color: var(--gold);
    font-size: 2rem;
}

.kvkk-title h2 {
    color: var(--gold);
    margin: 0;
    font-size: 1.8rem;
}

.kvkk-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.kvkk-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.kvkk-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.kvkk-section {
    margin-bottom: 30px;
}

.kvkk-section h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.kvkk-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.kvkk-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kvkk-section ul li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.kvkk-section ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.contact-info {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--gold);
}

.kvkk-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(218,165,32,0.1);
    text-align: right;
    background: rgba(255,255,255,0.02);
}

.kvkk-accept-btn {
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.kvkk-accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218,165,32,0.2);
}

/* Scrollbar Stil */
.kvkk-body::-webkit-scrollbar {
    width: 8px;
}

.kvkk-body::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}

.kvkk-body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .kvkk-modal-content {
        margin: 15px;
        width: auto;
    }

    .kvkk-title h2 {
        font-size: 1.5rem;
    }

    .kvkk-body {
        padding: 20px;
    }
}
/* Ürünler Sayfası Stilleri */
.products-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/urunler/banner.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
}

/* Kategori Filtreleri */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: #c9a25d;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(218,165,32,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.product-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.details-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .details-btn {
    transform: translateY(0);
    opacity: 1;
}

.details-btn:hover {
    transform: scale(1.1) !important;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.product-specs i {
    color: var(--gold);
}

/* Ürün Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 1200px;
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.product-images {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-details {
    padding: 0 20px;
}

.product-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--gold);
}

.specs-table {
    width: 100%;
    margin-bottom: 30px;
}

.specs-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.specs-table td:first-child {
    font-weight: 500;
    color: var(--gold);
    width: 40%;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218,165,32,0.2);
}

/* İstatistikler */
.product-stats {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(26,26,26,0.9)), url('../img/stats-bg.jpg') no-repeat center fixed;
    background-size: cover;
    margin-top: 80px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(218,165,32,0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 991px) {
    .modal-content {
        padding: 20px;
    }

    .product-details {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .stat-box {
        margin-bottom: 20px;
    }
}
.products-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #ba9653;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFD700;
}

.section-title p {
    color: #ffffff;
    font-size: 16px;
}

.products-grid {
    padding: 20px 0;
    max-width: 1200px; /* Grid'i sınırla */
    margin: 0 auto; /* Ortala */
}

.products-grid .row {
    margin: -15px;
}

.products-grid .col-lg-3 {
    padding: 15px;
}

.product-card {
    height: 100%;
    background: #c9a25d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    text-align: center;
    background: #c9a25d;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.details-btn {
    padding: 12px 30px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .details-btn {
    transform: translateY(0);
}

.details-btn:hover {
    background: #fff;
    color: #000;
}

/* Tüm Ürünleri Gör butonu için yeni stiller */
.view-all-container {
    margin-top: 50px;
    padding-top: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #c9a25d;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.view-all-btn:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .products-grid {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .products-grid {
        max-width: 720px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-grid {
        max-width: 540px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        max-width: 100%;
        padding: 0 15px;
    }
}
/* Ham Madde Özellikleri Bölümü Stilleri */
.material-properties {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffa100 0%, #e8bb70 100%);
    position: relative;
    overflow: hidden;
}

.material-properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFD700;
}

.properties-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.properties-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.property-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-icon i {
    font-size: 32px;
    color: white;
}

.property-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
}

.property-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.property-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hover Efektleri */
.property-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.property-item:hover::before {
    opacity: 0.05;
}

.property-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.property-item:hover .property-icon::after {
    transform: scale(1.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .properties-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .material-properties {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .properties-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .timeline-progress {
        display: none;
    }
}

@media (max-width: 480px) {
    .property-icon {
        width: 60px;
        height: 60px;
    }

    .property-icon i {
        font-size: 24px;
    }

    .property-content h3 {
        font-size: 1.1rem;
    }

    .property-content p {
        font-size: 0.9rem;
    }
}

/* Animasyon Efektleri */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.property-icon i {
    animation: iconPulse 2s infinite;
}

/* Özel Scroll Bar */
.material-properties::-webkit-scrollbar {
    width: 8px;
}

.material-properties::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.material-properties::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

.material-properties::-webkit-scrollbar-thumb:hover {
    background: #FFC107;
}
.products-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.products-grid {
    padding: 40px 0;
}

.products-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-lg-3 {
    padding: 15px;
}

.product-card {
    height: 100%;
    background: #efc175;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    display: block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.sliding-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.5),
        rgba(255,215,0,0.5),
        rgba(255,215,0,0.8),
        rgba(255,215,0,0.5)
    );
    transition: left 0.5s ease;
}

.view-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-info {
    padding: 15px;
    text-align: center;
    background: #efc175;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Hover Efektleri */
.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .sliding-effect {
    left: 100%;
}

.product-card:hover .view-text {
    opacity: 1;
    transform: translateX(0);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Tüm Ürünleri Gör Butonu */
.view-all-container {
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #efc175;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: #e3b15e;
    color: #333;
    transform: translateY(-2px);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Touch cihazlar için */
@media (hover: none) {
    .product-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.3);
    }
    
    .view-text {
        opacity: 1;
        transform: translateX(0);
    }
    
    .sliding-effect {
        animation: slideEffect 2s infinite;
    }
}

@keyframes slideEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 24px;
    }
    
    .product-info h3 {
        font-size: 15px;
    }
    
    .view-all-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}