/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Ana Renkler */
:root {
    --primary-color: #ffffff;    /* Beyaz */
    --secondary-color: #3498DB;  /* Buz Mavisi */
    --accent-color: #3498DB;     /* Mavi */
    --text-color: #ffffff;       /* Beyaz */
    --dark-bg: #1a1a1a;         /* Koyu arka plan */
    --darker-bg: #141414;       /* Daha koyu arka plan */
    --white: #FFFFFF;           /* Beyaz */
    --gradient-start: #1a1a1a;   /* Gradient başlangıç */
    --gradient-end: #2d2d2d;     /* Gradient bitiş */
    --navbar-bg: #1a1a1a;        /* Koyu arka plan */
    --navbar-text: #ffffff;      /* Beyaz yazı */
}

/* Hover efektleri için yeni renk */
:root {
    --secondary-hover: #2980b9;  /* Koyu Buz Mavisi */
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

body {
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--darker-bg) 0%, #2c3e50 50%, var(--darker-bg) 100%);
    padding: 0.7rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: block !important;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.top-bar-left a:hover {
    color: var(--white);
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.top-bar-left a i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.top-bar-left a:hover i {
    color: var(--white);
}

.top-bar-right {
    display: flex;
    gap: 1.2rem;
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-right a:hover {
    color: var(--white);
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

@media (max-width: 992px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.7rem 1rem;
    }
    
    .top-bar-left {
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-right {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .top-bar-right a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .top-bar-left a {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: block !important;
        position: fixed;
        top: 0;
        z-index: 999;
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.7rem 1rem;
    }
    
    .top-bar-left {
        justify-content: center;
        gap: 1rem;
    }
    
    .top-bar-right {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .top-bar-right a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .top-bar-left a {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
    }
    
    header {
        top: 40px;
        z-index: 1000;
    }
    
    .hero-slider {
        margin-top: 110px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.4rem 0;
    }
    
    .top-bar-content {
        padding: 0.4rem 0.8rem;
    }
    
    .top-bar-left {
        gap: 0.5rem;
    }
    
    .top-bar-left a {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    
    .top-bar-right {
        gap: 0.8rem;
    }
    
    .top-bar-right a {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    header {
        top: 65px;
    }
    
    .hero-slider {
        margin-top: 135px;
    }
}

/* Header ve Navigasyon */
header {
    background: linear-gradient(to right, var(--navbar-bg), #2d2d2d);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--navbar-text);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Bölüm Stilleri */
section {
    background-color: var(--darker-bg);
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-top: 1rem;
    display: inline-block;
    padding: 0 20px;
}

section h2::before,
section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

section h2::before {
    left: -20px;
    transform: translateX(-100%);
}

section h2::after {
    right: -20px;
    transform: translateX(100%);
}

section:hover h2::before {
    transform: translateX(-50%);
}

section:hover h2::after {
    transform: translateX(50%);
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 20%, 
        var(--secondary-color) 80%, 
        transparent 100%
    );
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

section:hover::after {
    transform: scaleX(1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 110px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
    padding-bottom: 6rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.slide-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-buttons {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    animation: fadeInUp 1.2s ease;
    z-index: 3;
}

.slide-button {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    text-align: center;
}

.slide-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.slide-button.primary {
    background: rgba(52, 152, 219, 0.8);
    border-color: var(--secondary-color);
}

.slide-button.primary:hover {
    background: rgba(52, 152, 219, 0.9);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    header {
        top: 0;
    }
    
    .hero-slider {
        margin-top: 70px;
    }

    .slide-content {
        padding: 1.5rem;
        padding-bottom: 5rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.6rem;
    }

    .slide-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 1rem;
        padding-bottom: 4rem;
    }

    .slide-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .slide-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .logo {
        font-size: 0.8rem;
    }
}

/* Ürünler Bölümü */
.products {
    background-color: var(--darker-bg);
    padding-top: 4rem;
    margin-top: 0;
}

.products::before {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card {
    background: var(--dark-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--white);
    opacity: 0;
    transform: translateX(100px);
}

.product-card.animate {
    animation: slideIn 0.8s ease forwards;
}

.product-card:nth-child(2).animate {
    animation-delay: 0.2s;
}

.product-card:nth-child(3).animate {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.product-card p {
    padding: 0 1.5rem;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-specs {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.product-specs h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-specs li {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-specs li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.product-specs .note {
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button {
    display: inline-block;
    margin: 1.5rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.button:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Çalışmalarımız Bölümü */
.projects {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 80px 20px;
    margin-top: 2rem;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary-color) 20%, 
        var(--secondary-color) 80%, 
        transparent 100%
    );
}

.projects h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.project-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.project-section {
    margin-bottom: 80px;
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-section h3 {
    text-align: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.project-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(50px);
}

.project-image.animate {
    animation: slideUp 0.8s ease forwards;
}

.project-section:nth-child(1) .project-image:nth-child(1).animate { animation-delay: 0.1s; }
.project-section:nth-child(1) .project-image:nth-child(2).animate { animation-delay: 0.2s; }
.project-section:nth-child(1) .project-image:nth-child(3).animate { animation-delay: 0.3s; }
.project-section:nth-child(1) .project-image:nth-child(4).animate { animation-delay: 0.4s; }

.project-section:nth-child(2) .project-image:nth-child(1).animate { animation-delay: 0.5s; }
.project-section:nth-child(2) .project-image:nth-child(2).animate { animation-delay: 0.6s; }
.project-section:nth-child(2) .project-image:nth-child(3).animate { animation-delay: 0.7s; }
.project-section:nth-child(2) .project-image:nth-child(4).animate { animation-delay: 0.8s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-specs {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.specs-table th,
.specs-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table th {
    background: linear-gradient(90deg, #2980b9 0%, #3498db 100%);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background: rgba(52, 152, 219, 0.05);
}

.specs-table tr:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #3498db;
    width: 40%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td:last-child {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .specs-table {
        font-size: 0.9rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .specs-table {
        font-size: 0.8rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.5rem 0.6rem;
    }
}

/* İletişim Bölümü */
.contact {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    margin-top: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info {
    padding: 2rem;
    background-color: var(--dark-bg);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #cccccc;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(52, 152, 219, 0.1);
}

.contact-info a:hover {
    color: var(--white);
    background: var(--secondary-color);
    text-decoration: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 4rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.social-links a:not(.disabled):hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .social-links {
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }

    .social-links a {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }

    .footer-section {
        padding: 0 0.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
}

/* Mobil Menü */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
    
    .contact-container {
        padding: 0;
    }
    
    .footer-content {
        padding: 2rem 0;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 70px;
        right: 20px;
        z-index: 1001;
    }

    nav {
        padding: 0.5rem 1rem;
        position: fixed;
        top: 40px;
        width: 100%;
        background: var(--darker-bg);
        z-index: 1000;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        max-height: 300px;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        text-align: center;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .hero-slider {
        margin-top: 110px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .map-container {
        height: 300px;
        margin-bottom: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .map-scroll-indicator {
        top: 140px;
        right: 15px;
    }

    .map-scroll-indicator a {
        padding: 8px 12px;
    }

    .map-scroll-indicator i {
        font-size: 1rem;
    }

    .map-scroll-indicator span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        top: 65px;
        right: 15px;
    }

    nav {
        top: 65px;
    }

    .nav-links {
        top: 105px;
    }

    .hero-slider {
        margin-top: 135px;
    }

    .logo-img {
        height: 35px;
    }

    .logo {
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        max-width: 200px;
    }

    section h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card p {
        font-size: 0.95rem;
    }

    .button {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 0.7rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-container {
        padding: 0 0.5rem;
    }

    .map-container {
        height: 250px;
    }

    .contact-info {
        padding: 1rem;
    }

    .map-scroll-indicator {
        top: 130px;
        right: 10px;
    }

    .map-scroll-indicator a {
        padding: 6px 10px;
    }
    
    .map-scroll-indicator span {
        font-size: 0.8rem;
    }
}

/* Sabit Butonlar */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-button,
.phone-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25D366;
}

.phone-button {
    background-color: var(--secondary-color);
}

.whatsapp-button:hover,
.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-button:active,
.phone-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button,
    .phone-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Hakkımızda Bölümü */
.about {
    background: var(--darker-bg);
    margin-top: 2rem;
    position: relative;
}

.about::before {
    display: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    opacity: 0;
    transform: translateY(50px);
}

.about-image.animate {
    animation: slideUp 0.8s ease forwards;
}

.about-image:nth-child(1).animate {
    animation-delay: 0.2s;
}

.about-image:nth-child(2).animate {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    padding: 10px;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--white);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.about-section i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    color: #cccccc;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #cccccc;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-images {
        max-width: 100%;
    }

    .about-image {
        height: 300px;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1.2rem;
    }
}

/* Özellikler Bölümü */
.features-section {
    display: none;
}

/* Bölüm Ayraçları */
.section-divider {
    position: relative;
    height: 60px;
    background: var(--darker-bg);
    overflow: hidden;
    display: block !important;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #2c3e50 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, var(--darker-bg) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.section-divider.wave {
    background: transparent;
    height: 40px;
}

.section-divider.wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--darker-bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 5% 20%, 10% 0, 15% 20%, 20% 0, 25% 20%, 30% 0, 35% 20%, 40% 0, 45% 20%, 50% 0, 55% 20%, 60% 0, 65% 20%, 70% 0, 75% 20%, 80% 0, 85% 20%, 90% 0, 95% 20%, 100% 0);
}

.section-divider.wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--dark-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0, 0 100%, 5% 80%, 10% 100%, 15% 80%, 20% 100%, 25% 80%, 30% 100%, 35% 80%, 40% 100%, 45% 80%, 50% 100%, 55% 80%, 60% 100%, 65% 80%, 70% 100%, 75% 80%, 80% 100%, 85% 80%, 90% 100%, 95% 80%, 100% 100%);
}

@media (max-width: 768px) {
    .section-divider {
        height: 40px;
    }

    .section-divider.wave {
        height: 30px;
    }

    .section-divider.wave::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 10% 20%, 20% 0, 30% 20%, 40% 0, 50% 20%, 60% 0, 70% 20%, 80% 0, 90% 20%, 100% 0);
    }

    .section-divider.wave::after {
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0, 0 100%, 10% 80%, 20% 100%, 30% 80%, 40% 100%, 50% 80%, 60% 100%, 70% 80%, 80% 100%, 90% 80%, 100% 100%);
    }
}

@media (max-width: 480px) {
    .section-divider {
        height: 30px;
    }

    .section-divider.wave {
        height: 25px;
    }

    .section-divider.wave::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 20% 20%, 40% 0, 60% 20%, 80% 0, 100% 20%, 100% 0);
    }

    .section-divider.wave::after {
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0, 0 100%, 20% 80%, 40% 100%, 60% 80%, 80% 100%, 100% 80%, 100% 100%);
    }
}

.map-indicator {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.map-indicator i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.map-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .map-indicator {
        padding: 6px 12px;
    }

    .map-indicator i {
        font-size: 1rem;
    }

    .map-indicator span {
        font-size: 0.8rem;
    }
}

/* Harita Belirteci */
.map-scroll-indicator {
    position: fixed;
    top: 40px;
    right: 20px;
    z-index: 9999;
    animation: slideIn 0.5s ease;
    display: block !important;
}

.map-scroll-indicator a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-scroll-indicator a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.map-scroll-indicator i {
    font-size: 1.1rem;
}

.map-scroll-indicator i.fa-map-marker-alt {
    color: var(--secondary-color);
}

.map-scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

.map-scroll-indicator i.fa-chevron-down {
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .map-scroll-indicator {
        top: 140px;
        right: 15px;
    }

    .map-scroll-indicator a {
        padding: 8px 12px;
    }

    .map-scroll-indicator i {
        font-size: 1rem;
    }

    .map-scroll-indicator span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .map-scroll-indicator {
        top: 130px;
        right: 10px;
    }

    .map-scroll-indicator a {
        padding: 6px 10px;
    }
    
    .map-scroll-indicator span {
        font-size: 0.8rem;
    }
}