@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: 'Gilroy', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f1da0f;
    --secondary-color: #333;
    --bg-color: #f5f5f5;
    --heading-font: 'Gilroy', sans-serif;
    --body-font: 'Gilroy', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow: hidden;
}

body.loaded {
    overflow: visible;
}

/* Header */
header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease;
    animation: headerSlideDown 0.5s ease-out;
}

header.scrolled {
    background: #212121;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo img {
    height: 50px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: var(--heading-font);
    position: relative;
    overflow: hidden;
}

header.scrolled .nav-menu a {
    color: #fff;
}

.nav-menu a.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.slider {
    position: relative;
    height: 745px;
    width: 100%;
    margin-top: 0;
    background: linear-gradient(to bottom, transparent 85%, #ffd700 85%);
}

.slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.contact-form {
    position: relative;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 10px;
    z-index: 4;
}

.contact-form h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    font-family: var(--body-font);
}

/* Products Section */
.products {
    padding: 2rem 5% 4rem;
    background: #fff;
    position: relative;
}

.products h2 {
    text-align: center;
    margin-bottom: 6rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    font-family: var(--heading-font);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 373px);
    gap: 2rem;
    margin: 2rem auto 0;
    justify-content: center;
    position: relative;
}

.product-card {
    margin-top: 50px;
    position: relative;
    width: 373px;
    height: 424px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    overflow: visible;
}

.product-image {
    position: absolute;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    top: -150px;
}

.product-image img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    margin: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.766));
}

.product-content {
    position: absolute;
    bottom: 0;
    width: 373px;
    height: 424px;
    background: #f8f8f8;
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-content::-webkit-scrollbar {
    width: 6px;
}

.product-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.product-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-content h3 {
    color: #000;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: var(--heading-font);
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content .btn {
    margin: 1rem 0;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Hover efekti */
.product-card:hover .product-content {
    background: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card:hover .product-content .btn {
    background: #000;
    color: #fff;
}

.product-card:hover .product-image img {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
}

/* Services Section */
.services {
    position: relative;
    padding: 0;
    background: url('../img/hizmetler.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-family: var(--heading-font);
}

.services-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    padding: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
}

.service-icon {
    background: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #000;
}

.service-content {
    flex: 1;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: var(--heading-font);
}

.service-item p {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
    transition: all 0.3s ease;
    margin: 3rem auto 0;
    min-width: 160px;
    text-align: center;
    font-size: 0.9rem;
}

.service-btn:hover {
    background: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
    }
    
    .slider {
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
    }
} 

/* Slider makine pozisyonu */
.slider-machine {
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 40%;
    max-width: 1000px;
}

.slider-machine img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    mix-blend-mode: normal;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    -webkit-filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
} 

/* About Section */
.about {
    background-color: var(--primary-color);
    padding: 7rem 7%;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.about-text {
    flex: 2;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
    font-family: var(--heading-font);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.8;
}

.contact-box {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-box h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
    background: #212121;
    border-bottom: none;
}

.contact-box h2 span {
    color: var(--primary-color);
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
}

.contact-box input {
    padding: 0.6rem 0;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #ccc;
    color: #212121;
    font-size: 1.1rem;
    font-family: var(--body-font);
}

.contact-box input::placeholder {
    color: #212121;
    opacity: 0.7;
    font-weight: 500;
}

.contact-box input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.contact-box button {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-box {
        max-width: 100%;
    }
} 

/* Tablet görünümü için */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
    }

    .contact-box {
        width: 100%;
        max-width: 600px;
        margin: 2rem auto 0;
    }
}

/* Genişletilmiş kart stilleri */
.product-card.expanded {
    height: auto;
    z-index: 100;
}

.product-card.expanded .product-content {
    position: relative;
    height: auto;
    padding-bottom: 2rem;
}

.product-card.expanded .product-content p {
    -webkit-line-clamp: unset;
    overflow: visible;
    max-height: none;
}

/* Hover efekti için z-index ayarı */
.product-card:hover {
    z-index: 99;
} 

/* Responsive tasarım için yükseklik ayarı */
@media (max-width: 768px) {
    .services {
        height: auto;
        min-height: auto;
        padding: 0;
        position: relative;
        background-attachment: fixed;
    }

    .services-overlay {
        position: relative;
        width: 100%;
        min-height: auto;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .services h2 {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    .services-subtitle {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin: 0 auto;
        max-width: 90%;
    }
} 

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 0;
    background: url('../img/referans.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    height: 773px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    width: 2050px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    animation: slideTrack 30s linear infinite;
    transition: transform 0.5s ease-in-out;
    width: 200%;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-group {
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
    min-width: 50%;
    justify-content: center;
    flex-wrap: nowrap;
}

.testimonial-item {
    flex: 0 0 180px;
    background: rgba(255, 255, 255, 0.714);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item img {
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(90%) brightness(1);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.testimonial-item:hover {
    background: rgba(189, 189, 189, 0.9);
    transform: translateY(-5px);
}

.testimonial-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}


/* Slider kenarlarında gradient efekti */
.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95), transparent);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.95), transparent);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
} 

/* Blog Section */
.blog {
    position: relative;
    padding: 0;
    background: #f8f8f8;
    color: #333;
    text-align: center;
    height: 773px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Arka plan resmi için yeni stil */
.blog::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 600px;
    background: url('../img/blog.png') no-repeat bottom right/contain;
    z-index: 1;
}

.blog-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2; /* İçeriği resmin üzerine getir */
}

.blog h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: flex;
    max-width: 1000px;
    width: 85%;
    margin: 0 auto 0 5%;
    padding: 0 3rem;
    position: relative;
    overflow: visible;
}

.blog-card {
    min-width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0); /* Daha şeffaf arka plan */
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
    transition: all 0.5s ease;
    height: 450px; /* Sabit yükseklik */
}

.blog-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.blog-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    flex: 0 0 55%;
    padding: 2.5rem; /* Padding'i azalttık */
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-content h3 {
    font-size: 1.4rem; /* Font boyutunu küçülttük */
    margin-bottom: 1rem;
}

.blog-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-location,
.blog-date,
.blog-stand,
.blog-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.blog-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.blog-date::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.blog-stand::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.blog-category::before {
    content: '\f02b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.blog-content p {
    font-size: 0.95rem; /* Font boyutunu küçülttük */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog navigasyon butonları */
.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-nav:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.blog-nav.prev {
    left: -20px; /* Ok pozisyonu düzeltildi */
}

.blog-nav.next {
    right: -20px; /* Ok pozisyonu düzeltildi */
}

/* Blog dots pozisyonu düzeltildi */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 1300px) {
    .blog-grid {
        margin: 0 auto 0 10%;
        width: 80%;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        margin: 0 auto;
        width: 90%;
    }
} 

/* Factory Section */
.factory {
    position: relative;
    height: 290px;
    width: 100%;
    background: url('../img/altalan.png') no-repeat center center/cover;
    overflow: hidden;
}

.factory-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(241, 218, 15, 0.762);
    display: flex;
    align-items: center;
    justify-content: center;
}

.factory-logo {
    max-width: 600px;
    width: 90%;
    padding: 2rem;
}

.factory-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .factory {
        height: 290px;
    }
    
    .factory-logo {
        max-width: 450px;
    }
} 

/* Footer Section */
.footer {
    position: relative;
    background: url('../img/footer.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    padding: 0;
    height: 390px;
    display: flex;
    align-items: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 90%;
    margin: 2rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-section p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    gap: 1rem;
}

.footer-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.31);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer {
        height: auto;
        min-height: unset;
        padding: 0;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }
    
    .footer-overlay {
        position: relative;
        padding: 0;
        height: auto;
        min-height: unset;
    }
    
    .footer-content {
        margin: 2rem auto;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .footer-section {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        margin-bottom: 1rem;
    }

    .footer-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-info p {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 0;
    }

    .footer-content {
        margin: 1rem auto;
        gap: 1.5rem;
    }
} 

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:last-child {
    bottom: 0;
}

/* Açık menü için hamburger animasyonu */
.hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Mobil menü */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #212121;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
} 

/* Daha küçük ekranlar için ek düzenleme */
@media (max-width: 480px) {
    .slider {
        min-height: 600px;
        height: 600px;
    }

    .slider-machine {
        width: 70%;
        bottom: -45px;
    }
} 

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 8rem;
        padding: 0 1rem;
        margin-bottom: 4rem;
    }

    .product-card {
        width: 100%;
        max-width: 373px;
        margin: 60px auto 3rem;
    }

    .product-content {
        width: 100%;
    }

    .products {
        padding: 2rem 0 4rem;
    }

    .products h2 {
        margin-bottom: 4rem;
    }
}

/* Tablet görünümü için */
@media (max-width: 1024px) and (min-width: 836px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        padding: 0 2rem;
    }

    .product-card {
        width: 100%;
        max-width: 340px;
        margin: 50px auto 0;
    }

    .product-content {
        width: 100%;
    }
}

/* Küçük tablet görünümü için */
@media (max-width: 835px) and (min-width: 769px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        padding: 0 1rem;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        margin: 50px auto 0;
    }

    .product-content {
        width: 100%;
        max-width: 300px;
    }

    .product-image {
        width: 100%;
        max-width: 300px;
    }
}

/* Services mobil düzenlemeler */
@media (max-width: 768px) {
    .services {
        height: auto;
        min-height: auto;
        padding: 0;
    }

    .services-overlay {
        position: relative;
        padding: 2rem 1rem;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: rgba(0, 0, 0, 0.85);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin: 0 auto;
        max-width: 90%;
    }

    .service-content {
        width: 100%;
    }

    .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-item p {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.9;
    }

    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .services-overlay {
        overflow-y: auto;
        padding: 4rem 1rem;
        height: auto;
    }
}

/* Tablet görünümü için */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        gap: 4rem 3rem;
        padding: 0 3rem;
    }
} 

@media (max-width: 1475px) and (min-width: 769px) {
    .blog::before {
        display: none !important; /* El resmini gizle */
    }
} 

/* Blog mobil düzenlemeler */
@media (max-width: 768px) {
    .blog::before {
        display: none; /* El resmini gizle */
    }

    .blog {
        height: auto;
        padding: 3rem 0;
    }

    .blog-grid {
        width: 95%;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .blog-card {
        flex-direction: column;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .blog-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .blog-content {
        flex: 1;
        padding: 1.5rem;
        background: transparent;
    }

    .blog-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .blog-details {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .blog-location,
    .blog-date,
    .blog-stand,
    .blog-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    /* Navigasyon butonlarını düzenle */
    .blog-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .blog-nav.prev {
        left: 5px;
    }

    .blog-nav.next {
        right: 5px;
    }

    /* Dots'ları düzenle */
    .blog-dots {
        margin-top: 1.5rem;
    }

    .blog-dot {
        width: 8px;
        height: 8px;
    }
} 

/* Scroll Margin için */
#urunler,
#referanslar {
    scroll-margin-top: 80px; /* Header yüksekliği kadar margin */
}

#hizmetler {
    scroll-margin-top: 150px !important;
}

@media (max-width: 768px) {
    #hizmetler {
        scroll-margin-top: 40px !important;
    }

    #urunler,
    #referanslar {
        scroll-margin-top: 40px;
    }
} 

/* Animasyon Stilleri */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header animasyonu */
header {
    animation: headerSlideDown 0.5s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hover Efektleri */
.nav-menu a {
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Buton Hover Efektleri */
.btn, button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover, button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Kart Hover Efektleri */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Servis İkon Animasyonu */
.service-icon {
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Smooth Scroll Davranışı */
html {
    scroll-behavior: smooth;
} 

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

.loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: dash 2s ease-in-out infinite;
}

.loader-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 283;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -283;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loader gizleme için class */
.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Sayfa içeriğini gizleme */
body {
    overflow: hidden;
}

body.loaded {
    overflow: visible;
} 

/* İletişim Sayfası Stilleri */
.contact-section {
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info-box {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: fit-content;
    order: 1;
}

.contact-info-header h2 {
    color: #212121;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-header p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.1);
    background: #000;
    color: var(--primary-color);
}

.info-text h4 {
    color: #212121;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p {
    color: #666;
    line-height: 1.6;
}

.contact-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-social h4 {
    color: #212121;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link2 {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link2:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
}

.contact-form-box {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    order: 2;
}

.contact-form-box h2 {
    color: #212121;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form-box p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(241, 218, 15, 0.1);
    background: #fff;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-box {
        order: 2;
    }

    .contact-form-box {
        order: 1;
    }

    .contact-info-box,
    .contact-form-box {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 2rem;
    }

    .contact-info-header h2,
    .contact-form-box h2 {
        font-size: 1.8rem;
    }

    .contact-info-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info-item i {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
} 

/* Harita Bölümü Stilleri */
.map-section {
    padding: 0 0 5rem;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    color: #212121;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #666;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .map-section {
        padding: 0 0 3rem;
    }

    .map-header h2 {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
} 
