﻿
.software-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    position: relative;
    overflow: hidden;
}

.software-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.feature-section {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

    .feature-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #47B5FF, transparent);
    }

    .feature-section:last-child::after {
        display: none;
    }

    .feature-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

.feature-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

    .feature-header::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: #47B5FF;
        opacity: 0.1;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.05;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.1;
    }
}

.feature-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .feature-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #47B5FF, #00a6ff);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.6s ease;
    }

.feature-section.visible .feature-header h2::after {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

    .feature-content.reverse {
        direction: rtl;
    }

        .feature-content.reverse .feature-text {
            direction: ltr;
        }
/* Her ikinci section'ın içeriğini ters çevir */

.feature-section:nth-child(even) .feature-content {
    direction: rtl;
}

    .feature-section:nth-child(even) .feature-content .feature-text {
        direction: ltr;
    }

.feature-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(71, 181, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.feature-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
}

    .feature-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;
    }

    .feature-media:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(71, 181, 255, 0.15);
    }

    .feature-media img,
    .feature-media video {
        width: 100%;
        border-radius: 15px;
        position: relative;
        z-index: 2;
    }
    /* Video Player Styles */

    .feature-media .video-container {
        position: relative;
        width: 100%;
        cursor: pointer;
        overflow: hidden;
        border-radius: 15px;
    }

        .feature-media .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

    .feature-media .video-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 15;
    }

    .feature-media .video-container:hover .video-controls {
        opacity: 1;
    }

    .feature-media .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 10;
        cursor: pointer;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .feature-media .video-container:hover .play-button {
        opacity: 1;
    }

    .feature-media .play-button.playing {
        opacity: 0 !important;
    }

    .feature-media .fullscreen-button {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 20;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .feature-media .video-container:hover .fullscreen-button {
        opacity: 1;
    }

    .feature-media .fullscreen-button:hover {
        transform: scale(1.1);
        background-color: rgba(0, 0, 0, 0.8);
    }

    .feature-media .play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 0 20px 30px;
        border-color: transparent transparent transparent white;
        margin-left: 7px;
        transition: all 0.3s;
    }

    .feature-media .play-button.playing::after {
        content: '';
        width: 30px;
        height: 30px;
        background: white;
        border-radius: 2px;
    }

    .feature-media .fullscreen-button i {
        color: white;
        font-size: 1.2rem;
    }

@media (max-width: 768px) {
    .feature-media .play-button {
        width: 60px;
        height: 60px;
    }

    .feature-media .fullscreen-button {
        width: 36px;
        height: 36px;
        bottom: 15px;
        right: 15px;
    }

    .feature-media .play-button::after {
        border-width: 15px 0 15px 25px;
        margin-left: 5px;
    }
}

.feature-text {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    .feature-text:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(71, 181, 255, 0.1);
    }

    .feature-text h3 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

        .feature-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #47B5FF;
            transition: width 0.4s ease;
        }

    .feature-text:hover h3::after {
        width: 100px;
    }

    .feature-text p {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.feature-benefits {
    list-style: none;
    padding: 0;
}

    .feature-benefits li {
        margin-bottom: 20px;
        padding-left: 35px;
        position: relative;
        color: #2c3e50;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

        .feature-benefits li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #47B5FF;
            font-weight: bold;
            background: rgba(71, 181, 255, 0.1);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-benefits li:hover {
            transform: translateX(5px);
        }

            .feature-benefits li:hover:before {
                background: #47B5FF;
                color: #fff;
            }

.tech-specs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(71, 181, 255, 0.1);
    transition: all 0.3s ease;
}

    .tech-specs:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(71, 181, 255, 0.1);
    }

    .tech-specs h4 {
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 1.3rem;
        position: relative;
        display: inline-block;
    }

        .tech-specs h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #47B5FF, transparent);
        }

    .tech-specs ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .tech-specs li {
        margin-bottom: 15px;
        color: #666;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .tech-specs li i {
            color: #47B5FF;
            margin-right: 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .tech-specs li:hover {
            color: #2c3e50;
            transform: translateX(5px);
        }

            .tech-specs li:hover i {
                transform: scale(1.2);
            }

@media (max-width: 768px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-header h2 {
        font-size: 2rem;
    }

    .feature-text {
        padding: 30px;
    }

        .feature-text h3 {
            font-size: 1.8rem;
        }

    .tech-specs ul {
        grid-template-columns: 1fr;
    }
}
/* Scroll to top button */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(66, 135, 245, 0.8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .scroll-to-top:hover {
        background-color: var(--primary-hover);
        transform: scale(1.1);
    }

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
}

.progress-circle-progress {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease-out;
}

.scroll-to-top i {
    position: relative;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
/* Loading animation */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #47B5FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.video-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

    .video-container video {
        width: 100%;
        height: auto;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-container:hover .play-button {
    opacity: 1;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 30px;
    border-color: transparent transparent transparent white;
    margin-left: 7px;
}

.play-button.playing::after {
    content: '';
    width: 30px;
    height: 30px;
    border: none;
    margin-left: 0;
    border-left: 8px solid white;
    border-right: 8px solid white;
}
/* Tablo Stilleri */

.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.requirements-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.requirements-header {
    text-align: center;
    margin-bottom: 50px;
}

    .requirements-header h2 {
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .requirements-header p {
        color: #666;
        font-size: 1.2rem;
    }

.requirements-tables {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.requirements-table {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .requirements-table:hover {
        transform: translateY(-5px);
    }

.table-header {
    background: linear-gradient(135deg, #47B5FF 0%, #1E90FF 100%);
    color: #fff;
    padding: 20px;
    text-align: center;
}

    .table-header h3 {
        font-size: 1.8rem;
        margin: 0;
    }

.table-content {
    padding: 30px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .requirements-list li {
        display: flex;
        align-items: flex-start;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

        .requirements-list li:last-child {
            border-bottom: none;
        }

.requirement-label {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
    padding-right: 20px;
    padding-top: 3px;
}

.requirement-value {
    color: #666;
    width: 70%;
    line-height: 1.6;
}

.camera-series {
    margin-bottom: 15px;
}

    .camera-series:last-child {
        margin-bottom: 0;
    }

    .camera-series h4 {
        color: #2c3e50;
        margin: 0 0 8px 0;
        font-size: 1.1rem;
    }

.camera-list {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 20px;
}

    .camera-list li {
        border: none;
        padding: 3px 0;
        break-inside: avoid;
        display: list-item;
    }

.requirement-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .camera-list {
        columns: 1;
    }

    .requirements-list li {
        flex-direction: column;
    }

    .requirement-label {
        width: 100%;
        margin-bottom: 8px;
    }

    .requirement-value {
        width: 100%;
    }
}
/* Canon Kamera Tablosu Stilleri */

.camera-compatibility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

    .camera-compatibility-table th,
    .camera-compatibility-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .camera-compatibility-table th {
        background: linear-gradient(135deg, #47B5FF 0%, #1E90FF 100%);
        color: white;
        font-weight: 600;
        white-space: nowrap;
    }

    .camera-compatibility-table tr:hover {
        background-color: #f8f9fa;
    }

    .camera-compatibility-table .model-name {
        font-weight: 600;
        color: #2c3e50;
    }

    .camera-compatibility-table .recommended {
        color: #28a745;
        font-weight: 600;
    }

    .camera-compatibility-table .not-recommended {
        color: #dc3545;
        font-weight: 600;
    }

.camera-notes {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

    .camera-notes h4 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .notes-list li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
        line-height: 1.6;
    }

        .notes-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #47B5FF;
        }

.motorized-stand-info {
    margin-top: 20px;
    padding: 20px;
    background: #e8f4ff;
    border-radius: 8px;
    border-left: 4px solid #47B5FF;
}

    .motorized-stand-info h4 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

@media (max-width: 768px) {
    .camera-compatibility-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .camera-compatibility-table th,
        .camera-compatibility-table td {
            padding: 10px;
        }
}
/* Lens Tablosu Stilleri */

.lens-compatibility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

    .lens-compatibility-table th,
    .lens-compatibility-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
        vertical-align: top;
    }

    .lens-compatibility-table th {
        background: linear-gradient(135deg, #47B5FF 0%, #1E90FF 100%);
        color: white;
        font-weight: 600;
        white-space: nowrap;
    }

    .lens-compatibility-table tr:hover {
        background-color: #f8f9fa;
    }

    .lens-compatibility-table .lens-name {
        font-weight: 600;
        color: #2c3e50;
    }

    .lens-compatibility-table .compatible {
        color: #28a745;
        font-weight: 600;
    }

    .lens-compatibility-table .not-compatible {
        color: #dc3545;
        font-weight: 600;
    }

.lens-notes {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.motorized-zoom-info {
    margin-top: 20px;
    padding: 20px;
    background: #e8f4ff;
    border-radius: 8px;
    border-left: 4px solid #47B5FF;
}

.compatible-lenses {
    margin-top: 15px;
    padding-left: 20px;
}

    .compatible-lenses li {
        margin-bottom: 8px;
        color: #2c3e50;
    }

@media (max-width: 768px) {
    .lens-compatibility-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .lens-compatibility-table th,
        .lens-compatibility-table td {
            padding: 10px;
        }
}

.system-overview {
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .system-overview::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #47B5FF, #1e90ff);
    }

    .system-overview h2 {
        color: #2c3e50;
        margin-bottom: 35px;
        text-align: center;
        font-size: 2.5rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }

        .system-overview h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #47B5FF;
            border-radius: 3px;
        }

.system-description {
    max-width: 900px;
    margin: 0 auto;
}

    .system-description > p {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
    }

.system-component {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .system-component:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .system-component h3 {
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .system-component h3::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: #47B5FF;
            margin-right: 12px;
            border-radius: 6px;
            opacity: 0.2;
        }

    .system-component ul {
        list-style-type: none;
        padding-left: 25px;
    }

        .system-component ul li {
            margin-bottom: 15px;
            position: relative;
            color: #4a5568;
            line-height: 1.6;
        }

            .system-component ul li:before {
                content: "→";
                color: #47B5FF;
                font-weight: bold;
                position: absolute;
                left: -25px;
                top: 0;
            }

        .system-component ul ul {
            margin-top: 15px;
            margin-left: 15px;
            border-left: 2px solid rgba(71, 181, 255, 0.2);
            padding-left: 20px;
        }

            .system-component ul ul li:before {
                content: "•";
                color: #47B5FF;
                opacity: 0.7;
            }

.workflow-description {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .workflow-description h3 {
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .workflow-description h3::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: #47B5FF;
            margin-right: 12px;
            border-radius: 6px;
            opacity: 0.2;
        }

    .workflow-description p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .workflow-description ol {
        padding-left: 25px;
        counter-reset: workflow-counter;
    }

        .workflow-description ol li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
            color: #4a5568;
            line-height: 1.6;
            counter-increment: workflow-counter;
        }

            .workflow-description ol li::before {
                content: counter(workflow-counter);
                position: absolute;
                left: -25px;
                top: 0;
                width: 24px;
                height: 24px;
                background: rgba(71, 181, 255, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.9rem;
                color: #47B5FF;
                font-weight: 600;
            }

@media (max-width: 1024px) {
    .system-overview {
        margin: 20px;
        padding: 30px;
    }

    .system-description {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .system-overview {
        padding: 20px;
        margin: 15px;
    }

        .system-overview h2 {
            font-size: 2rem;
        }

    .system-component {
        padding: 20px;
    }

    .workflow-description {
        padding: 20px;
    }

    .system-description > p {
        font-size: 1.1rem;
    }
}

.system-component h3 i,
.workflow-description h3 i {
    margin-right: 15px;
    color: #47B5FF;
    font-size: 1.8rem;
}

.system-component ul li i,
.workflow-description ol li i {
    margin-right: 10px;
    color: #47B5FF;
    width: 20px;
    text-align: center;
}

.system-component ul ul li i {
    font-size: 0.9em;
    opacity: 0.8;
}

.system-component ul li:before,
.workflow-description ol li::before {
    display: none;
}

.system-component ul li,
.workflow-description ol li {
    display: flex;
    align-items: flex-start;
}

    .system-component ul li i {
        margin-top: 3px;
    }

.workflow-description ol {
    list-style: none;
    padding-left: 0;
}

    .workflow-description ol li {
        padding-left: 0;
        margin-left: 0;
    }

@media (max-width: 768px) {
    .system-component h3 i,
    .workflow-description h3 i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
}

.hero-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}



.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 165, 233, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    color: #0284C7;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    transform-origin: left;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.hero-eyebrow i {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0C4A6E 0%, #0284C7 50%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 28px;
    line-height: 1.1;
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(14, 165, 233, 0.05);
}

    .feature-card:hover {
        transform: translateY(-5px) scale(1.02);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1), 0 1px 3px rgba(14, 165, 233, 0.1);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
        animation: shimmer 2s infinite;
    }

    .feature-icon i {
        color: white;
        font-size: 1.5rem;
        z-index: 1;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

.feature-card h3 {
    font-size: 1.3rem;
    color: #0F172A;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeUp 0.8s ease-out 0.6s backwards;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
        transform: translateX(-100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cta-button:hover::before {
        transform: translateX(0);
    }

    .cta-button.primary {
        background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3), 0 2px 4px rgba(14, 165, 233, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }

    .cta-button.secondary {
        background: white;
        color: #0284C7;
        border: 1px solid rgba(14, 165, 233, 0.2);
        box-shadow: 0 2px 4px rgba(14, 165, 233, 0.05), inset 0 -2px 0 rgba(14, 165, 233, 0.05);
    }

    .cta-button:hover {
        transform: translateY(-2px);
    }

    .cta-button.primary:hover {
        box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4), 0 2px 4px rgba(14, 165, 233, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }

    .cta-button.secondary:hover {
        background: rgba(14, 165, 233, 0.05);
        border-color: rgba(14, 165, 233, 0.4);
    }

.hero-media {
    position: relative;
    padding: 40px;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.media-container {
    position: relative;
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15), 0 10px 20px rgba(14, 165, 233, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .media-container:hover {
        transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-5px);
        box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2), 0 15px 30px rgba(14, 165, 233, 0.15);
    }

.browser-header {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .browser-dot:hover {
        transform: scale(1.2);
    }

    .browser-dot.red {
        background: #FF5F57;
    }

    .browser-dot.yellow {
        background: #FFBD2E;
    }

    .browser-dot.green {
        background: #28C840;
    }

.browser-address {
    flex: 1;
    background: #E2E8F0;
    border-radius: 8px;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #64748B;
    font-size: 0.9rem;
    gap: 8px;
}

    .browser-address i {
        color: #94A3B8;
    }

.software-preview {
    position: relative;
    padding-top: 0;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.05) 100%);
    pointer-events: none;
}

.main-preview {
    width: 100%;
    height: auto;
    display: block;
}

.feature-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.highlight-point {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0284C7;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2), 0 0 20px rgba(14, 165, 233, 0.4);
    animation: pulse-point 2s infinite;
}

@keyframes pulse-point {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2), 0 0 20px rgba(14, 165, 233, 0.4);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.1), 0 0 30px rgba(14, 165, 233, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2), 0 0 20px rgba(14, 165, 233, 0.4);
    }
}

.highlight-point:nth-child(1) {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.highlight-point:nth-child(2) {
    top: 45%;
    right: 25%;
    animation-delay: 0.5s;
}

.highlight-point:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.highlight-label {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 0.95rem;
    color: #0C4A6E;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1), 0 5px 15px rgba(14, 165, 233, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
}

    .highlight-label:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15), 0 8px 20px rgba(14, 165, 233, 0.1);
        border-color: rgba(14, 165, 233, 0.2);
    }

    .highlight-label i {
        color: #0284C7;
        font-size: 1.2rem;
        filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.2));
    }

    .highlight-label.top {
        top: 20%;
        left: calc(20% + 25px);
    }

    .highlight-label.middle {
        top: 40%;
        right: calc(25% + 25px);
    }

    .highlight-label.bottom {
        bottom: 25%;
        left: calc(30% + 25px);
    }

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
        transform-origin: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .media-container {
        transform: none;
        max-width: 800px;
        margin: 0 auto;
    }

        .media-container:hover {
            transform: translateY(-5px);
        }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-media {
        padding: 20px;
    }

    .highlight-label {
        display: none;
    }

    .browser-address {
        display: none;
    }
}

.software-mega-menu .mega-menu-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
}

.software-mega-menu .mega-menu-section {
    flex: 0 1 300px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

    .software-mega-menu .mega-menu-section:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

    .software-mega-menu .mega-menu-section i {
        font-size: 2rem;
        color: #0284C7;
        margin-bottom: 15px;
    }

    .software-mega-menu .mega-menu-section h3 {
        color: #0284C7;
        margin: 10px 0;
        font-size: 1.2rem;
    }

    .software-mega-menu .mega-menu-section p {
        color: #64748B;
        font-size: 0.9rem;
        line-height: 1.5;
    }







/* KAPSAYICI ------------------------------------------------- */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    /* alta taşınmaya izin ver */
    gap: 2rem;
    /* kartlar arası boşluk */
    justify-content: center;
    /* satırda ortalama */
}
/* KART ------------------------------------------------------ */

.service-card {
    flex: 0 1 240px;
    /* max 240 px genişlik, gerektiğinde daralabilir */
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
    }

    .service-card i {
        font-size: 2.4rem;
        color: #0d6efd;
        margin-bottom: .8rem;
    }

    .service-card h3 {
        margin: .6rem 0;
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: .95rem;
        color: #555;
        line-height: 1.45;
    }
/* RESPONSIVE (isteğe bağlı) --------------------------------- */

@media(max-width:480px) {
    .service-card {
        flex: 0 1 100%;
    }
    /* çok dar ekranda tam genişlik */
}







/* yumuşak kaydırma tüm sayfa için */

html {
    scroll-behavior: smooth;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
/* <a> etiketini kart gibi görselleştir */

.service-card {
    flex: 0 1 260px;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: inherit;
    /* link rengi devre dışı */
    transition: transform .25s, box-shadow .25s;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    }

    .service-card i {
        font-size: 2.4rem;
        color: #0d6efd;
        margin-bottom: .8rem;
    }