/* Entegrasyonlar Bölümü */
.integrations-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}
  
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
  
/* Entegrasyon Kartları */
.integration-card {
    position: relative;
    border-radius: 16px;
    min-height: 402px;
    padding: 32px;
    padding-bottom: 200px; /* Görseller için daha fazla alan */
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    display: flex;
    flex-direction: column;
}
  
.marketplace-card {
    background-color: #F3FBF7;
    background-image: url('..//assets/images/part23.png');
}
  
.payment-card {
    background-color: #FAF5FF;
    background-image: url('..//assets/images/part24.png');
}
  
.cargo-card {
    background-color: #FFF7F0;
    background-image: url('..//assets/images/part25.png');
}
.marketplace-card,.payment-card, .cargo-card{
    height: 490px;
    background-size: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marketplace-card:hover,.payment-card:hover, .cargo-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.integration-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #1F1F1F;
}
  
.integration-divider {
    width: 50px;
    height: 3px;
    border: none;
    margin: 0 0 16px;
}

.marketplace-divider {
    background-color: #00A04A;
}

.payment-divider {
    background-color: #7E22CE;
}

.cargo-divider {
    background-color: #F97316;
}

.integration-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6B6B6B;
    margin-bottom: 24px;
}

/* İletişim Formu Bölümü */
.contact-section {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: #F9F8F5;
    background-image: url('..//assets/images/part34.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 300px;
    border-radius: 12px;
    padding: 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: linear-gradient(180deg, rgba(255,198,84,0.2) 0%, rgba(249,248,245,0) 100%);
    transform: translate(-50%,-50%) rotate(45deg);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #1C1C1C;
}

.contact-description {
    margin: 0 0 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B6B6B;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #1C1C1C;
    box-sizing: border-box;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #1C1C1C;
    box-sizing: border-box;
    resize: vertical;
}

.phone-group {
    display: flex;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
}

.phone-select {
    width: 100px;
    border: 1px solid #E1E1E1;
    border-radius: 8px 0 0 8px;
    padding: 0 12px;
    background: #fff;
    font-size: 14px;
    color: #1C1C1C;
    appearance: none;
    box-sizing: border-box;
}

.phone-input {
    flex: 1;
    border: 1px solid #E1E1E1;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    padding: 0 16px;
    font-size: 14px;
    color: #1C1C1C;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 16px;
    box-sizing: border-box;
}

.form-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6B6B6B;
    cursor: pointer;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    flex-shrink: 0;
}

.form-checkbox a {
    color: #1C1C1C;
    text-decoration: underline;
}

.form-button {
    width: 100%;
    height: 48px;
    background: #FF6D00;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.contact-info {
    max-width: 1200px;
    margin: 40px auto;
    background-color: var(--color-light-gray);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
    color: var(--color-dark);
    box-sizing: border-box;
}

.contact-address,
.contact-email,
.contact-phone {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-address i,
.contact-email i,
.contact-phone i {
    font-size: 24px;
    color: var(--color-primary);
}

.contact-phone, .contact-email {
    padding: 0 16px;
}

.social-links {
    max-width: 1200px;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 24px;
    padding-bottom: 24px;
    box-sizing: border-box;
}

.social-link {
    font-size: 20px;
    color: #6B6B6B;
    text-decoration: none;
}

/* E-İhracat Bölümü */
.eihracat-section {
    width: 100%;
    padding: 0px 0px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.eihracat-card {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: #FEF7F0;
    background-image: url('..//assets/images/part35.png');
    background-position: right 0px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 12px;
    padding: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.eihracat-content {
    max-width: 480px;
}

.eihracat-title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #1C1C1C;
}

.eihracat-description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B6B6B;
}

/* Dünya Haritası Bölümü */
.map-section {
    width: 100%;
    padding: 20px 20px;
    margin-bottom: 70px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.map-card {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: #E8F7FE;
    background-image: url('..//assets/images/part36.png');
    background-position: center bottom;
    height: 773px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    border-radius: 12px;
    padding: 60px 60px 180px;
    text-align: center;
    box-sizing: border-box;
}

.map-title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #1C1C1C;
}

.map-description {
    margin: 0 auto 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B6B6B;
    max-width: 720px;
}

/* Footer İletişim Bölümü */
.footer-logo {
    text-align: center;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 180px;
    display: inline-block;
}

.footer-contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    border: 1px solid #ffffff6e;
    border-radius: 15px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    max-width: 360px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-right: 8px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .contact-card, .eihracat-card {
        background-size: 220px auto;
    }
    
    .eihracat-card {
        padding: 60px;
    }
    .marketplace-card,.payment-card, .cargo-card{
        height: 490px;
        background-size: 100%;
    }
    .map-card {
        height: 600px;
        background-size: 130% auto;
    }
}

@media (max-width: 768px) {
    .contact-card, .eihracat-card {
        padding: 40px;
    }
    
    .contact-card {
        background-position: right -30px center;
        background-size: 180px auto;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .eihracat-card {
        background-position: center bottom;
        background-size: 550px auto;
        height: 600px;
    }
    
    .eihracat-content {
        max-width: 100%;
    }
    
    .map-card {
        height: 500px;
        padding-bottom: 120px;
        background-size: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .contact-email,
    .contact-phone {
        border: none;
        padding: 0;
    }
    .marketplace-card,.payment-card, .cargo-card{
        height: 590px;
        background-size: 100%;
    }
    .footer-contact-item {
        width: 100%;
        max-width: 300px;
    }
    
    .integration-card {
        min-height: 450px;
        padding-bottom: 240px;
    }
}

@media (max-width: 576px) {
    .contact-card, .eihracat-card, .map-card {
        padding: 30px 20px;
    }
    .marketplace-card,.payment-card, .cargo-card{
        height: 490px;
        background-size: 100%;
    }
    .contact-card {
        background-image: none !important;
        background-size: 150px auto;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .eihracat-card {
        background-position: center bottom;
        background-size: 350px auto;
        height: 450px;
    }
    
    .eihracat-title {
        font-size: 24px;
    }
    
    .map-card {
        height: 400px;
        padding-bottom: 100px;
        background-size: 100% auto;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .integration-card {
        min-height: 400px;
        padding: 24px;
        padding-bottom: 200px;
    }
    
    .social-links {
        grid-template-columns: repeat(2, auto);
        gap: 16px;
    }

    .footer-logo img {
        width: 150px;
    }
}