.footer-bottom-plain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    margin-top: 0;
    background: transparent;
    border-top: 1px solid #e5e7eb;
    flex-wrap: nowrap;
    gap: 40px;
}

/* Keep left and right inline on desktop */
.footer-bottom-left {
    flex: 1 1 auto;
    min-width: 0; /* allow text wrapping without pushing layout */
}

.footer-bottom-right {
    flex: 0 0 auto;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: baseline;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #22C55E;
}

.logo-dot {
    font-size: 20px;
    color: #22C55E;
    margin-left: 2px;
}

.nav {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #028702;
    color: white;
}

.btn-primary:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #E4E7E4;
    font-size: 14px;
    font-weight: 700;
}

.btn-outline:hover {
    background: #F4F4F4;
    color: #1A1A1A;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 70vh;
    margin-top: 100px;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    margin-bottom: 10px;
}

.hero-description p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.6;
}

.hero-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #16A34A;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    top: 86%;
    position: relative;
}

.delivery-person {
    position: relative;
    width: auto; 
    height: auto; 
}


.cargo-image {
    position: absolute;
    bottom: -12px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 20px 0 0;
        overflow: hidden; /* prevent accidental overflow */
    }
    .hero-image { 
        align-items: flex-end; 
        position: static; 
        margin-top: 60%;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .delivery-person {
        width: 70vw; /* responsive width */
        max-width: 320px; 
        height: auto;
    }
    .cargo-image {
        bottom: 0; /* align with section end */
        max-width: 100%;
        height: auto;
    }
}

.steps {
    background: linear-gradient(180deg, #F0FFF4 0%, #FFF0F5 100%);
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #F0FFF4 0%, #FFF0F5 100%);
    z-index: 1;
}

.steps .container {
    position: relative;
    z-index: 2;
}

.steps-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 30px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    position: relative;
    padding: 32px 24px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: visible;
    width: 50%;
    margin: 0 auto;
}

/* Alternatif yerleşim için */
.step-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.step-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.step-item:hover {
    transform: none;
    box-shadow: none;
}

.step-number {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: url('images/step.png') center/cover no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    z-index: 1;
    opacity: 1;
}

.step-number-text {
    background: linear-gradient(135deg, #22C55E 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    font-weight: 700;
}

.step-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 18px;
}

.step-content p a {
    color: #22C55E;
    text-decoration: none;
    font-weight: 500;
}

/* Decorative box icons for specific steps */
.step-item:nth-child(3)::after {
    content: url('images/4.png');
    position: absolute;
    top: 20px;
    left: calc(100% + 70%);
    display: block;
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}

.step-item:nth-child(4)::after {
    content: url('images/3.png');
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    transform: rotate(10deg);
    z-index: 1;
    pointer-events: none;
}

.step-item:nth-child(5)::after {
    content: url('images/2.png');
    position: absolute;
    top: 20px;
    right: 0px;
    left: calc(100% + 30%);
    display: block;
    transform: rotate(330deg);
    z-index: 1;
    pointer-events: none;
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
    margin: 0 auto;
}

.stat-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 120px;
    padding: 28px 24px;
    background: #f9fafb;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-number {
    grid-column: 1;
    grid-row: 1;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label {
    grid-column: 1;
    grid-row: 2;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-left: 0;
}

.stat-description {
    grid-column: 2;
    grid-row: 1 / span 2;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 360px;
    align-self: center;
}

.cta {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0 11px;
}

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

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #16A34A;
    margin-bottom: 40px;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.producer-illustration {
    position: relative;
    width: 300px;
    height: 400px;
}

.producer-figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    position: relative;
}

.producer-body {
    width: 80px;
    height: 120px;
    background: #8b5cf6;
    border-radius: 40px 40px 20px 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.producer-head {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.producer-hand {
    position: absolute;
    bottom: 60px;
    right: -20px;
    font-size: 30px;
}

.handmade-bag {
    position: absolute;
    bottom: 60px;
    left: 20px;
    width: 60px;
    height: 80px;
}

.bag-shape {
    width: 100%;
    height: 100%;
    background: #22C55E;
    border-radius: 8px;
    position: relative;
}

.bag-heart {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #22C55E;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 60px 0 0;
}

.footer-content {
    gap: 60px;
    margin-bottom: 40px;
    display: flex;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #22C55E;
}

.footer-logo .logo-dot {
    font-size: 18px;
    color: #22C55E;
    margin-left: 2px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
}

.contact-item i {
    color: #22C55E;
    width: 16px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #16A34A;
    transform: translateY(-2px);
}

.app-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.app-link img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 48px; /* increased side padding */
    margin-top: 30px;
    background: #F0FFF4;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 20px;
    /* full-bleed background without changing HTML structure */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.footer-bottom-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    /* re-constrain inner content to site width */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Place the second section (mobile apps) on the right on desktop */
.footer-bottom-sections .footer-section:last-child {
    justify-self: end;
    text-align: right;
}

/* Align app buttons to the right on desktop */
.footer-section .app-links {
    align-items: flex-end;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 12px;
}

.footer-bottom-left p {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;

}

.legal-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

.legal-links a:hover {
    color: #22C55E;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.payment-methods img {
    height: auto;
    width: 100%;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #374151;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item img {
    width: 40px;
    height: 40px;
}

.mobile-contact {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    margin-left: 15px;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-text span:first-child {
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
}

.contact-text span:last-child {
    font-size: 13px;
    font-weight: 700;
    color: #16A34A;
}
.contact-phone { 
    text-decoration: none;
    color: #16A34A;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .steps-grid {
        gap:40px;
        grid-template-columns: 1fr;
    }
    .step-item{
        width: 100%;
    }
    .stats {
        padding: 80px 0 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    
    .cta {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0 0;
}
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-bottom {
        padding: 24px 25px;
    }

    .footer-bottom-sections {
        grid-template-columns: 1fr;
        width: 100%;
    }

    /* Reset right alignment on mobile to keep layout clean */
    .footer-bottom-sections .footer-section:last-child {
        justify-self: start;
        text-align: start;
    }

    .footer-section .app-links {
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-plain {
        flex-direction: column;
        align-items: start;
        text-align: start;
        padding: 20px;
        gap: 20px;
    }

    /* Reorder footer elements on mobile - right section above left */
    .footer-bottom-plain {
        display: flex;
        flex-direction: column;
    }
    
    .footer-bottom-right {
        order: -1; /* Move right section above left */
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    /* Show mobile contact on small screens */
    .mobile-contact {
        display: flex;
    }
    


    .delivery-person {
        width: 70vw;
        max-width: 320px;
        height: auto;
    }

    .cargo-image {
        bottom: 0;        
        max-width: 100%;
        height: auto;
    }

    
.contact-item img {
    width: 30px;
    height: 30px;
}

.contact-item span {
    font-size: 14px;
    font-weight: 600;
}
.payment-methods {
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}
.legal-links {
    display: flex ;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    left: 40px;
}
.footer-bottom-left{
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .steps-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}
