/* Ana Sayfa Özel Stilleri */

/* Özellikler Bölümü */
.features-section {
    padding: 80px 0;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.features-header .section-badge {
    display: inline-block;
    background: #d91b5c;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 0 20px;
}

.features-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

.features-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
    margin-bottom: 60px;
}

.features-image-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.features-phone-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.features-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.5;
}

.features-list li i {
    color: #d91b5c;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Feature Box Sections - Yeni Tasarım */
.feature-box-section {
    padding: 60px 0;
    position: relative;
}

.feature-box-section.feature-language {
    background: linear-gradient(135deg, #d91b5c 0%, #93113e 100%);
}

.feature-box-section.feature-customize {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-box-section.feature-reports {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-box-section.feature-kitchen {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-box-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-box-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-box-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #d91b5c 0%, #93113e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(236, 29, 121, 0.4);
}

.feature-box-section.feature-customize .feature-box-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.feature-box-section.feature-reports .feature-box-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.feature-box-section.feature-kitchen .feature-box-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.feature-box-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-box-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-box-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.feature-badge i {
    font-size: 1.1rem;
    color: #d91b5c;
}

.feature-box-section.feature-customize .feature-badge i {
    color: #f5576c;
}

.feature-box-section.feature-reports .feature-badge i {
    color: #4facfe;
}

.feature-box-section.feature-kitchen .feature-badge i {
    color: #43e97b;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }

    .features-header h2 {
        font-size: 2.2rem;
    }

    .features-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-image-column {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-image-column {
        justify-content: center;
    }

    .features-header p {
        font-size: 1rem;
    }

    .feature-box-section {
        padding: 40px 0;
    }

    .feature-box-content {
        padding: 40px 30px;
    }

    .feature-box-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .feature-box-content h3 {
        font-size: 1.8rem;
    }

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

    .feature-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .features-header .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .features-header h2 {
        font-size: 1.6rem;
    }

    .features-image-column {
        justify-content: center;
    }

    .feature-box-content {
        padding: 30px 20px;
    }

    .feature-box-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-box-content h3 {
        font-size: 1.5rem;
    }

    .feature-box-badges {
        gap: 10px;
    }

    .feature-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* QR Stand Bölümü */
.qr-stand-section {
    padding: 80px 0;
    background: #ffffff;
}

.qr-stand-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.qr-stand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qr-stand-left {
    padding-right: 40px;
}

.qr-stand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d91b5c;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.qr-stand-badge i {
    font-size: 1.2rem;
}

.qr-stand-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qr-stand-left p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qr-stand-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.qr-stand-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.qr-stand-feature-icon {
    width: 45px;
    height: 45px;
    background: #ecfeff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d91b5c;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.qr-stand-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.qr-stand-feature-text p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.qr-stand-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.qr-stand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.qr-stand-tag i {
    color: #d91b5c;
    font-size: 1rem;
}

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

.qr-stand-card {
    background: #ffffff;
    border-radius: 7px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.qr-stand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.qr-stand-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 15px;
}

.qr-stand-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

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

    .qr-stand-left {
        padding-right: 0;
    }

    .qr-stand-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qr-stand-section {
        padding: 60px 0;
    }

    .qr-stand-left h2 {
        font-size: 2rem;
    }

    .qr-stand-right {
        grid-template-columns: 1fr;
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: #fff;
}

.steps-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-header .section-badge {
    display: inline-block;
    background: #d91b5c;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.steps-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: #ffffff;
    border-radius: 7px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d91b5c 0%, #93113e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.step-features li i {
    color: #d91b5c;
    margin-top: 3px;
    flex-shrink: 0;
}

.steps-note {
    background: #ffffff;
    border-left: 4px solid #d91b5c;
    padding: 25px 30px;
    border-radius: 7px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.steps-note p {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
}

.steps-note i {
    color: #d91b5c;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }

    .steps-header h2 {
        font-size: 2rem;
    }

    .steps-header p {
        font-size: 1rem;
    }

    .step-card {
        padding: 30px 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .steps-note {
        padding: 20px 25px;
    }
}
