﻿

/* Reset ve Genel Stiller */
:root {
    --primary: #2563eb;
    --navbar-bg: #181f2b;
    --menu-bg: #fff;
    --menu-shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
    --transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
}

body {
    margin: 0;
    background: #f8fafc;
    font-family: helvetica;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
/* Hero Section */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #47B5FF 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 100px 0;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        transform: rotate(15deg);
        pointer-events: none;
    }

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 1s ease-out 0.2s both;
}

    .hero-eyebrow span {
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-eyebrow i {
        color: white;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    animation: fadeInUp 1s ease-out 0.4s both;
}

    .hero-title span {
        color: white;
        display: block;
    }

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out 0.8s both;
}

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-image:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.02);
    }

    .hero-image img {
        width: 100%;
        height: 600px;
        object-fit: contain;
        border: none;
        position: relative;
        z-index: 2;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px) perspective(1000px) rotateY(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Section Header Styles */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #47B5FF;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}
/* Benefits Section */

.benefits-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

    .benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2347B5FF' fill-opacity='0.03'%3E%3Cpath d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 80c-16.6 0-30-13.4-30-30s13.4-30 30-30 30 13.4 30 30-13.4 30-30 30z'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 450px;
    overflow: hidden;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(71, 181, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .benefit-card:hover::before {
        opacity: 1;
    }

    .benefit-card:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card:nth-child(odd) {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card:nth-child(even) .benefit-content {
        order: 2;
    }

    .benefit-card:nth-child(even) .benefit-image {
        order: 1;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(71, 181, 255, 0.15);
        border-color: rgba(71, 181, 255, 0.3);
    }

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #47B5FF 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(71, 181, 255, 0.3);
}

    .benefit-icon::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #47B5FF, #2563eb, #1e40af);
        border-radius: 22px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

    .benefit-card:hover .benefit-icon::before {
        opacity: 1;
    }

.benefit-icon i {
    font-size: 35px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-title {
    font-size: 2.2rem;
    color: #1a202c;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.2rem;
    margin: 0;
}

.benefit-image {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .benefit-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(71, 181, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.benefit-card:hover .benefit-image::before {
    opacity: 1;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-card:hover .benefit-image {
    box-shadow: 0 25px 50px rgba(71, 181, 255, 0.2);
}

@media (max-width: 1200px) {
    .benefit-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

        .benefit-card:nth-child(even) .benefit-content,
        .benefit-card:nth-child(even) .benefit-image {
            order: unset;
        }

    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .benefit-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 30px;
        min-height: auto;
    }

    .benefit-image {
        height: 200px;
    }

    .benefit-title {
        font-size: 1.5rem;
    }

    .benefit-description {
        font-size: 1rem;
    }
}
/* Showcase Section */

.showcase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .showcase-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(71, 181, 255, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    perspective: 1000px;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}
/* .showcase-item:not(.iframe-item):hover {
            transform: translateY(-8px) rotateX(3deg);
            box-shadow: 0 20px 40px rgba(71, 181, 255, 0.15);
        } */

.showcase-media {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8fafc;
}

.showcase-item.image-item .showcase-media {
    background: white;
}

.showcase-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 181, 255, 0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
/* .showcase-item:not(.iframe-item):hover .showcase-media::before {
            opacity: 1;
        } */

.showcase-media iframe,
.showcase-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
/* .showcase-item:not(.iframe-item):hover .showcase-media img,
        .showcase-item:not(.iframe-item):hover .showcase-media video {
            transform: scale(1.05);
        } */

.showcase-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
/* .showcase-item:not(.iframe-item):hover::after {
            opacity: 1;
        } */

.showcase-item {
    position: relative;
}

    .showcase-item::before {
        content: '';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(71, 181, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .showcase-item.iframe-item::before {
        content: '360°';
        color: white;
        font-weight: 700;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
    }

    .showcase-item.video-item::before {
        content: '\f03d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: white;
        font-size: 16px;
    }

    .showcase-item.gif-item::before {
        content: 'GIF';
        color: white;
        font-weight: 700;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
    }

    .showcase-item.image-item::before {
        content: '\f03e';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: white;
        font-size: 16px;
    }
/* Machine Slider Section */

.machines-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.machine-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(71, 181, 255, 0.1);
}

    .machine-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(71, 181, 255, 0.15);
        border-color: rgba(71, 181, 255, 0.3);
    }

.machine-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .machine-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

    .machine-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 20px;
        transition: transform 0.4s ease;
    }

.machine-card:hover .machine-image img {
    transform: scale(1.05);
}

.machine-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    position: relative;
    z-index: 1;
}

.machine-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

    .machine-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: #47B5FF;
        border-radius: 2px;
        left: 50%;
        transform: translateX(-50%);
    }

.machine-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: #47B5FF;
    color: white;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

    .machine-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .machine-button:hover {
        background: #2563eb;
        transform: translateY(-2px);
    }

        .machine-button:hover::before {
            left: 100%;
        }

    .machine-button i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .machine-button:hover i {
        transform: translateX(5px);
    }

@media (max-width: 1200px) {
    .machines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .machines-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .machine-card {
        height: 400px;
    }

    .machine-image {
        height: 200px;
    }

    .machine-title {
        font-size: 1.2rem;
    }

    .machine-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* Responsive Styles */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 40px 30px;
    }

    .machine-content {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-item:hover {
        transform: translateY(-5px);
    }
}


